Merging question reappears

I have 2 tables. PIX is the schema name. ORACLE 11G
desc TT_LIST_DATA (its a global temporary table)
Name                           Null     Type                                                                                                                                                                                          
------------------------------ -------- --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 
SEQ_ID                         NOT NULL NUMBER(4)                                                                                                                                                                                     
FIELD_ID                       NOT NULL NUMBER                                                                                                                                                                                        
FIELD_DB_NAME                           VARCHAR2(30)                                                                                                                                                                                  
DISPLAY_NAME                            VARCHAR2(50)                                                                                                                                                                                  
DISPLAY_SEQUENCE                        NUMBER                                                                                                                                                                                        
ITEM_DATA_TYPE                          NUMBER                                                                                                                                                                                        
ITEM_DATA_MNEMONIC                      VARCHAR2(20)                                                                                                                                                                                  
ITEM_DATA_LENGTH                        NUMBER                                                                                                                                                                                        
ITEM_DISPLAY_LENGTH                     NUMBER                                                                                                                                                                                        
ITEM_FG_COLOR_ID                        NUMBER                                                                                                                                                                                        
ITEM_FG_COLOR_MNEMONIC                  VARCHAR2(20)                                                                                                                                                                                  
ITEM_BG_COLOR_ID                        NUMBER                                                                                                                                                                                        
ITEM_BG_COLOR_MNEMONIC                  VARCHAR2(20)                                                                                                                                                                                  
ITEM_INDENT                             NUMBER                                                                                                                                                                                        
ITEM_INDENT_MNEMONIC                    VARCHAR2(20)                                                                                                                                                                                  
ITEM_COLSPAN                            NUMBER                                                                                                                                                                                        
LINK_TYPE                               NUMBER                                                                                                                                                                                        
LINK_TYPE_MNEMONIC                      VARCHAR2(30)                                                                                                                                                                                  
LINK_VALUE                              VARCHAR2(500)                                                                                                                                                                                 
SORT_ENABLED                            NUMBER                                                                                                                                                                                        
SORT_SEQUENCE                           NUMBER                                                                                                                                                                                        
FILTER_ENABLED                          NUMBER                                                                                                                                                                                        
FILTER_SEQUENCE                         NUMBER                                                                                                                                                                                        
REF_TABLE_NAME                          VARCHAR2(64)                                                                                                                                                                                  
LINK_STYLE                              VARCHAR2(250)                                                                                                                                                                                 
FIELD_VALUE                             VARCHAR2(1500)                                                                                                                                                                                
IS_EDITABLE                             NUMBER                                                                                                                                                                                        
IS_DROPDOWN                             NUMBER                                                                                                                                                                                        

28 rows selected


desc LIST_CONFIGURATION_MASTER_T
Name                           Null     Type                                                                                                                                                                                          
------------------------------ -------- --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 
MODULE_ID                      NOT NULL NUMBER                                                                                                                                                                                        
FIELD_ID                       NOT NULL NUMBER(3)                                                                                                                                                                                     
FIELD_DB_NAME                  NOT NULL VARCHAR2(30)                                                                                                                                                                                  
DISPLAY_NAME                   NOT NULL VARCHAR2(50)                                                                                                                                                                                  
DISPLAY_SEQUENCE                        NUMBER                                                                                                                                                                                        
ITEM_DATA_TYPE                          NUMBER                                                                                                                                                                                        
ITEM_DATA_LENGTH                        NUMBER(5)                                                                                                                                                                                     
ITEM_DISPLAY_LENGTH                     NUMBER                                                                                                                                                                                        
ITEM_FG_COLOR_ID                        NUMBER                                                                                                                                                                                        
ITEM_BG_COLOR_ID                        NUMBER                                                                                                                                                                                        
ITEM_INDENT                             NUMBER                                                                                                                                                                                        
ITEM_COLSPAN                            NUMBER                                                                                                                                                                                        
LINK_TYPE                               NUMBER                                                                                                                                                                                        
LINK_VALUE                              VARCHAR2(500)                                                                                                                                                                                 
SORT_ENABLED                            NUMBER(3)                                                                                                                                                                                     
SORT_SEQUENCE                           NUMBER(3)                                                                                                                                                                                     
FILTER_ENABLED                          NUMBER(3)                                                                                                                                                                                     
FILTER_SEQUENCE                         NUMBER(3)                                                                                                                                                                                     
REF_TABLE_NAME                          CHAR(64)                                                                                                                                                                                      
LINK_STYLE                              VARCHAR2(250)                                                                                                                                                                                 
IS_EDITABLE                             NUMBER                                                                                                                                                                                        
IS_DROPDOWN                             NUMBER(3)                                                                                                                                                                                     
IS_MOVEABLE                    NOT NULL NUMBER                                                                                                                                                                                        
IMPORT_ENABLED                          NUMBER(3)                                                                                                                                                                                     
IMPORT_SEQUENCE                         NUMBER(3)                                                                                                                                                                                     
IMPORT_NULL                             NUMBER(3)                                                                                                                                                                                     

26 rows selected

 
I use the merge statement to update TT_LIST_DATA
MERGE INTO TT_LIST_DATA  tt

USING 
(select
PIX.TT_LIST_DATA.ROWID,
PIX.LIST_CONFIGURATION_MASTER_T.field_db_name,
PIX.LIST_CONFIGURATION_MASTER_T.display_name,
PIX.LIST_CONFIGURATION_MASTER_T.display_sequence,
PIX.LIST_CONFIGURATION_MASTER_T.item_data_type,
PIX.LIST_CONFIGURATION_MASTER_T.item_data_length,
PIX.LIST_CONFIGURATION_MASTER_T.item_display_length,
NVL(PIX.TT_LIST_DATA.item_fg_color_id, PIX.LIST_CONFIGURATION_MASTER_T.item_fg_color_id),
PIX.LIST_CONFIGURATION_MASTER_T.item_bg_color_id,
PIX.LIST_CONFIGURATION_MASTER_T.item_indent,
PIX.LIST_CONFIGURATION_MASTER_T.item_colspan,
PIX.LIST_CONFIGURATION_MASTER_T.link_type,
NVL(PIX.TT_LIST_DATA.link_value, PIX.LIST_CONFIGURATION_MASTER_T.link_value),
PIX.LIST_CONFIGURATION_MASTER_T.is_editable,
PIX.LIST_CONFIGURATION_MASTER_T.ref_table_name,
PIX.LIST_CONFIGURATION_MASTER_T.is_dropdown

FROM  PIX.LIST_CONFIGURATION_MASTER_T ,
      PIX.TT_LIST_DATA 
WHERE 
PIX.LIST_CONFIGURATION_MASTER_T.field_id = TT_LIST_DATA.field_id
AND PIX.TT_LIST_DATA.Item_Data_Type IS NULL) d

ON 
( 
tt.ROWID=D.ROWID)

WHEN MATCHED THEN
UPDATE SET
tt.field_db_name = d.field_db_name,
tt.display_sequence=d.display_sequence
 
but I get an error ORA: 1445

How to merge using the rowid condition
Thank you

Published by: Rahul_India on August 24, 2012 01:18

Published by: Rahul_India on August 24, 2012 01:18

Cant, you come to do

update tt_list_data a
   set (
      a.field_db_name, a.display_sequence
       ) =
       (
         select b.field_db_name,
          b.display_sequence
        from list_configuration_master_t b
       where a.field_id = tt_list_data.field_id
         and b.item_data_type is null
       )
 where
exists (
         select b.field_db_name,
          b.display_sequence
        from list_configuration_master_t b
       where a.field_id = tt_list_data.field_id
         and b.item_data_type is null
       )

Or this

merge into tt_list_data a
using (
     select * from list_configuration_master_t
      ) b
   on (
     a.field_id = tt_list_data.field_id and
     b.item_data_type is null
      )
 when matched then
     update set
          a.field_db_name    = b.field_db_name,
          a.display_sequence = b.display_sequence

Tags: Database

Similar Questions

  • Patch to merge question

    Hi all

    my system is
    EBS R12 12.1.1
    DB 11 GR 1 material

    I will apply these patches to the system
    before that I would apply first to we patch and merge all languages for a patch then
    apply it.

    My question is
    If I can combine all languages, including the United States in a patch, then apply

    p8645555_R12. INV. B_R12_GENERIC.zip
    p8645555_R12. INV. B_R12_zhs.zip
    p8645555_R12. INV. B_R12_zht.zip


    Please notify.
    Thanks in advance.

    Hello

    My question is
    If I can combine all languages, including the United States in a patch, then apply

    p8645555_R12. INV. B_R12_GENERIC.zip
    p8645555_R12. INV. B_R12_zhs.zip
    p8645555_R12. INV. B_R12_zht.zip

    Yes you can - see the patching for more details (Page 5-17, Patching NLS Systems).

    Oracle Applications patchwork of procedures
    http://download.Oracle.com/docs/CD/B53825_03/current/Acrobat/121adpp.PDF

    Thank you
    Hussein

  • DataFinder merger questions or

    I use the DataFinder toolkit and I'm trying to setup a search where he will find reports that have a cycle count a larger then a value.  For the different report types, the property of the file is named slightly different and I want to be able to find all the.  If, for example, that if the test is a functional test then the name of the property is "Functional_Cycles_Completed", if the test is a continuous, it is named "Continuous_Cycles_Completed", and some tests will contain two properties because some tests come and go between fucntional and continuous.

    If some files have a single property, some files have a different property, and some files have both properties.  I did a search as a test query looking for the continuous type which is digital and greater then 0.  He returned the files I wanted.  For the next, I did two queries, one for each property, then put them in a table with the beam and then for queries to merge using the OR operator.  My search returns no files now.  Why is this?  There is no errors of the queries, fusion or research.

    The only thing I can think is that the merger will fail because the files do not contain these two properties.  I'm performing a search saying X > 0 OR Y > 0.  But if it is not done this causes the problem?  How can I perform a search looking for either property, but we can not exist?

    Your answer explains why you don't receive any results when you combine the three query conditions.

    As soon as you use a property in your application which is not indexed the DataFinder returns 0 results.

    There is a work around if you want to write code that works even if a certain property is not yet indexed (but will probably be indexed thereafter). You can use the get indexed Properties.vi to check if a certain property is already indexed before you merge with the other conditions of the query.

    I have attached an example VI that assumes that a property is still indexed and the other is maybe not. I hope this helps.

    Good day

    Eva

  • Merge question-multiple data records

    I am trying to create name tags.

    I have a master page that is put in place with 4 name tags and I'm trying to merge my csv file.

    It gives me one record per page instead of 4...

    Help!

    The preview looks correct but after-merger, eventually one per page.

    You start with just a map on the master page, and then the multiple record merger process will take care to walk 4 cards per page.

  • IPhone 6 more flashing screen

    After updating my iphone 6 more with ios10, the start flickering from the top screen and the buttons does not. stil phonse looking again, does not fall and there is not a single crash. It has already expired the warrently, I understand that there are a lot of people the same proplem faceing. We can hangout or Exchange the phone to Apple.

    Hello

    First consider trying the following steps:

    If the problem persists (or if you prefer to skip this step), contact Apple support (mail service may be available) or make a Genius Bar reservation in order to have your iPhone verified and, if recommended by Apple, served:

  • HD/Fusion drive locked, it cannot erase or restore

    I had difficulties with my drive stall at random for seemingly no reason. So, I did a full backup (not with Time Machine... which waived the slightest error) and intended to erase/recover and then reinstall. Well well, in the middle of the erase process, he wrong on and now drive Ulitities has almost all the options greyed out. When I do the news. on my drive merger questions have failed.

    One place that I saw a way to fix it by using Terminal Server, but I don't seem to have this option.

    What should do?

    Thank you

    Michael

    p.s. before all this, my status says S.M.A.R.T. failure... would it why what is happening?

    What why what is happening?

    Yes. A disk is failing, or there is another fault of internal material.

    An appointment of 'Genius' to an Apple Store, or select another authorized service provider.

    If privacy is a concern, delete the partitions of data with the ability to write zeros * (do it only if you have at least two backups complete, independent, and you know how to restore on a blank disc from any one of them.) Do not delete the recovery partition, if it is present.

    Keep your confidential data safe during the repair of the equipment

    Apple recommends that you remove permission to a device in the iTunes store before serving.

    * One SSD has no need to be set to zero.

  • iOS 9.2 translates freezing screens and the 'home' button does not

    I have problems and more from Friday December 11 when I've upgraded to iOS 9.2.

    Device: iPhone 5 s

    Problems:

    -Screen freezes randomly reboot * required (sometimes restart by the camera itself)

    -Sometimes device reacts very slowly on the command (or even then restarts)

    -For the most part within the first hour when used, sometimes immediately (after restart)

    -Cannot slide or apps to react when I touch

    -AssitiveTouch on, keep available however to move and opening, but no order accepted when the screen is in gel

    Resolution of problems so far:

    -Reset all settings (no result)

    -Backup on iTunes (11 dec)

    -Erase content and settings and restore the backup to iCloud (10 Dec *) (no result)

    -Erase content and settings and restore the backup of iTunes (11 dec) (no result)

    -Tried with the new iPhone camera 6 and restore backup icloud (unsuccessfully; restore hangs at "1 minute remaining")

    -Tried with the new iPhone camera 6 and restore backup of iTunes (no result: same freezing questions reappear)

    Conclusion date: is not a hardware problem (device), but one software: combination of the configuration (such as backup) and the new iOS 9.2.

    By the way: I guess that not possible to restore 9.1 on the device.

    The new iPhone 6 initially contained iOS 9.1, but then did not 'see' backups, because they were made from a 9.2 iOS device.

    So I had to first install the iPhone 6 as a new iPhone, upgrade to iOS 9.2 and then I was able to reset and restore the backup (with no good result, as described above).

    *) restarts: hold Home-button on/off-button simultaneously for 10 seconds

    backup *) in the form of clouds 10 Dec worked without problem on iOS 9.1.

    I will continue to investigate on removing the apps installed a year or two, see if that generates the result.

    After a few reboots and removal of some applications (for example, OneDrive), my iPhone 6 preformed well for a few days.

    However, it seemed that my search bar for the application of Messages and Notes app has not produced all realistic either.

    I then did a reset again and after that, it al returned to the freezing and bogged down again

  • 6 iPhone with iOS 9.2 does not and freezing when I try to turn on + WiFi freezes

    6 iPhone with iOS 9.2 does not and freezing when I try to turn on + WiFi freezes cannot allow him. (When I get to start the Iphone by pluging it to Itunes)

    I've done a new install and reset the network settings.

    But always the same questions

    Thanks a lot for your help

    I have the same questions and more from Friday December 11 when I've upgraded to iOS 9.2.

    Device: iPhone 5 s

    Problems:

    -Screen freezes randomly reboot * required (sometimes restart by the camera itself)

    -Sometimes device reacts very slowly on the command (or even then restarts)

    -For the most part within the first hour when used, sometimes immediately (after restart)

    -Cannot slide or apps to react when I touch

    -AssitiveTouch on, keep available however to move and opening, but no order accepted when the screen is in gel

    Resolution of problems so far:

    -Reset all settings (no result)

    -Backup on iTunes (11 dec)

    -Erase content and settings and restore the backup to iCloud (10 Dec *) (no result)

    -Erase content and settings and restore the backup of iTunes (11 dec) (no result)

    -Tried with the new iPhone camera 6 and restore backup icloud (unsuccessfully; restore hangs at "1 minute remaining")

    -Tried with the new iPhone camera 6 and restore backup of iTunes (no result: same freezing questions reappear)

    Conclusion date: is not a hardware problem (device), but one software: combination of the configuration (such as backup) and the new iOS 9.2.

    By the way: I guess that not possible to restore 9.1 on the device.

    The new iPhone 6 initially contained iOS 9.1, but then did not 'see' backups, because they were made from a 9.2 iOS device.

    So I had to first install the iPhone 6 as a new iPhone, upgrade to iOS 9.2 and then I was able to reset and restore the backup (with no good result, as described above).

    *) restarts: hold Home-button on/off-button simultaneously for 10 seconds

    backup *) in the form of clouds 10 Dec worked without problem on iOS 9.1.

    I will continue to investigate on removing the apps installed a year or two, see if that generates the result.

  • Left mouse button

    HP Pavilion dv4 - 1125nr Entertainment Notebook PC. I'm having a problem with my left button of the mouse. It seems to work all the time, but the metal top cover seems loose. In fact you can actually vibrate by tapping it. Someone had this problem? Does need a new switch or if something could be loose? PC is about 18 months old and has not had much use. I'm afraid that it will suddenly quit working altogether.

    Hi all

    Unfortunately I had my fixed left mouse mat after 9 months on light to moderate use.  At 13 months the same loose key question reappeared, but because it had been more than 90 days, HP wouldn't repair it without a load of nearly $ 300.  Our family has 5 laptop computers HP and 3 printers (of which 2 had problems hardware and software keep).  Today I'm going to order a Dell or Levono to replace this laptop - it became unusable for work (unable to use a mouse on a plane).

    We have HP fans for a long time, but we finally decided to switch to a product with the best quality and support, including for well-known problems such as this.

    If you have this problem with your laptop, try to get something in writing that they will load again (and) no additional charge because they know that it is often a recurrent problem, once it happened to your laptop.

  • Question seeks to clean install 10 Windows on the drive of the merger. El Capitan.

    Problem: try a clean install of Windows 10 via the Boot Camp Assistant on an iMac 27 inches (Late2013) with 10.11.4 installs hours (more than 8 hours) and then failed to install Boot Camp updates. Essentially installation take much long than normal and cannot install updates of the Apple software or create normally start Windows Boot Camp 10.

    Background: After problems of slowing down after upgrading to 10.11.4 (with improved Bootcamp Windows 10) who had previously worked fine for 10 months, to the point of a start of OS X time, I decided to do a clean install of my iMac with Fusion 3 to disk.

    As I was unable to remove the partition from Boot Camp through BCA because of his holding always at the same load, I used Internet recovery and reset the Fusion drive. This then required me to repair the partition of Fusion by car through THE "fix" option which seems to work very well. And reinstalled OS X 10.11.4 which works fine now (delays etc..)

    Try using BCA to create a new partition Boot Camp and a clean Windows 10 install after downloading an image of disk W10 directly from Microsoft (Win10_1511_1_English_x64), BCA by downloading software updates and by selecting the desired partition, it began to restart and initialize the installation. However the whole process has been very slow, each step takes much longer than usual, to progress. Leave for hours rest a blank screen or with a circle of rotation.

    I tried with another stick USB 3 and also a USB 2 stick, but none has made a difference.

    In the last attempt, I left running overnight and after 8-9 hours, he finally reaches the top of desktop Windows 10 and the update of Apple Bootcamp starts to load updates. However, he just hung and even after 2 hours, nothing was. Reboot and try once again has been the same.

    After that I tried to create a Windows Installer via BCA 8.0 however it gives just a TPG error when you try to select the drive (due to el Capitan I guess?)

    After four days of efforts, I'm a loser on how to get the Windows 10 on the Boot Camp partition. I can't even install W8 and upgrade due to the error of TPG.

    Any help or suggestions how to proceed with the diagnostic / resolution of the problem would be appreciated.

    Details:

    System: iMac (27 inch, end of 2013), 3.4 GHz Intel Core i5, 16 GB 1600 MHz DDR3, NVIDIA GeForce GTX 780 M 4096 MB, OS X 10.11.4

    • Nothing other than the keyboard and mouse attached via the USB ports, as well as the key USB of BCA. No other attached devices.
    • Reset memory NVRAM, SMC and ran more than once disk utility. No problem not reported.  Ran NVRAM reset before each attempt.
    • At ran EtreCheck report which seemed OK.
    • Verification of diagnosis ran who is childless.

    A detail I noticed after the merger by car there are now two Macintosh HD images when you use boot option. One previously. Are named "Macintosh HD" and "Macintosh HD2". I remember being Yosemite simultaneously in three, but which has been fixed in an update.

    In addition, it seems that no recovery partition. Cmd + R lance Internet recovery.

    Distill the results (the Boot Camp partition removed):

    / dev/disk0 (internal, physical):

    #: NAME SIZE TYPE IDENTIFIER

    0: GUID_partition_scheme * GB 121,3 disk0

    1: disk0s1 EFI EFI 209.7 MB

    2: Apple_CoreStorage GB internal drive 121.0 disk0s2

    3: disk0s3 Apple_Boot Boot OS X 134,2 MB

    / dev/disk2 (internal, physical):

    #: NAME SIZE TYPE IDENTIFIER

    0: GUID_partition_scheme * 3.0 to disk2

    1: disk2s1 NO NAME 209.7 MB EFI

    2: disk2s2 Apple_CoreStorage TB 3.0 drive internal

    3: disk2s4 Apple_Boot Boot OS X 134,2 MB

    / dev/disk3 (internal, virtual):

    #: NAME SIZE TYPE IDENTIFIER

    0: Apple_HFS Macintosh HD + 3.1 TB disk3

    Logical volume on disk0s2, disk2s2

    7BE1F343-ACBE-4144-BF86-C838BE1E49D4

    Fusion unencrypted drive

    iMac - simon: ~ list of cs simon$ diskutil

    CoreStorage groups of logical volumes (1 found)

    |

    + Logical Volume - Group CA0B8D0A-6315-4E85-B313-52AB509473F2

    =========================================================

    Name: Internal drive

    Status: online

    Dimensions: 3121237860352 B (3.1 TB)

    Free space: 0 (0 B) B

    |

    +-Physical volume 5E75EE74-EE1F-4FCB-A0C5-9ED5517FEB93

    |   ----------------------------------------------------

    |   Index: 0

    |   Disc: disk0s2

    |   Status: online

    |   Dimensions: 120988852224 B (121.0 GB)

    |

    +-Physical volume 91D639D6-634E-47C1-AFE5-616CE12E71E0

    |   ----------------------------------------------------

    |   Index: 1

    |   Disc: disk2s2

    |   Status: online

    |   Dimensions: 3000249008128 B (3.0 to)

    |

    +--> Logical volume family EE9934AC-F3CB-4101-ADB6-576F4371B4B9

    ----------------------------------------------------------

    Encryption type: no

    |

    +--> Logical volume 7BE1F343-ACBE-4144-BF86-C838BE1E49D4

    ---------------------------------------------------

    Disc: disk3

    Status: online

    Size (Total): 3106705375232 B (3.1 TB)

    Reversible: no

    Name: Macintosh HD

    Volume name: Macintosh HD

    Content indicator: Apple_HFS

    LVG Type: Fusion, sparse

    Summary:

    Q1: Should it take 4 + hours to install Windows 10 via BCA?

    Q2: Al must ultimately be so slow when initially W10 desktop?

    Q3; What I do once I arrive at the office of W10 but it automatically updates the graphics driver as BC update is simply suspended for centuries and get a working driver to restart at least W10?

    Q4: is there a problem with the disk HARD the Drive of Fusion that is causing all this delay and slow install / boot? ON the clean install OS X 10.11.4 it is back to be fast as usual and all tests show things are OK but W10 goes on the part of the HARD drive. No way to verify this beyond diagnosis or Etrecheck?

    Q5: Y at - it no problem with the GPT / MBR that may be causing the delay etc. ?

    Q6: How can I use my existing WindowsImageBackup backup from the previous W10 with the BCA install usb drive or how to create a USB stick otherwise recovery disk with my other single Mac have W7?

    Q7: How can I install W8 as I once did on Yosemite, via el Capitan without a mistake to TPG on selection of disc?

    Details:

    Day 5. Attempt at 6.

    Partition Boot Camp delete and try again install via BCA. First question, is that when the startup it goes to a blank black screen. For a time nothing left. Reset then using alt to select windows training results in almost instantaneous startup of the BCA message created and the beginning of the installation.

    4 1/2 hours from start of Windows 10 initial signature window.

    Then the second question. One to reach the Boot Camp update Office tries to start and install the drivers. Allows you to "list files...". "stage then sits at the bar about 5% green for 1 to 2 hours and does nothing. All actions in the Office of the W10 takes ages.

    In the meantime, auto update of the W10 appears a message saying that the updated graphics drivers as one of the few messages or actions during this period. Looks like Nvidia install with the entire package of experience (unwanted) etc. and very probably not the correct gpu driver.

    Finally deciding to cancel the installation of BC by killing the Setup.exe process. Then copy Boot camp install files on the desktop. Lasts 30 minutes to copy. Run again and this time, although taking 15-20 minutes to download and install later with the success message.

    Check the graphic driver it shows a yellow exclamation mark, so the following Microsoft instructions I use the uninstall option via the device and then Manager (slowly) come on board to load and download the latest Nvidia driver on their site for the GTX 780 M for 64-bit W10 etc. The same thing that I had used previously. Slow with running the Nvidia Setup program again, but eventually it works only to say that he could not install as unrecognized graphics device...

    He ends up with Microsoft PnP driver so it's at least sufficient start and run it again BC of the figure updates as all other drivers have been installed. To restart, but I get an error of K-Mode that is most likely related to this driver graphic and not possible to start in the new W10 Boot Camp partition after 7 hours.

    I have a picture of W10 backup recovery (WindowsImageBackup) I've had in a few weeks, but it will not install bet for the installed W10. I try with the ACO created the USB windows but can't seem to get a way to get into recovery mode and to get the menu to install it. I don't have a way to create a USB W10 recovery key now because my other Mac has just installed W7.

    Finally I tried to count a reset of the Recovery boot up option but it seems that it will take longer to start.

    I also went to the recovery and selected Boot Mode safe, but it opens on an empty black window and he's here doing nothing.

    Looks like I'll have to restart on via BCA and reinstall and try and solve the problem of graphics in order to install driver updates from BC and restart to W10 and hope that with the drivers, it returns to the operation and the normal starting time. Then update the gpu driver.

    I used and installed Boot Camp several times with over the years including previously an upgrade of W8.1 > W10 I used for over 6 months without problem. I've never known these installation very long or ice once in Windows even for the initial start upward.

    For any help or suggestion would be appreciated, and this seemingly simple process has now expanded to five days.

  • My post has been merged and said even customer same question and this post that has been merged had nothing to do with questions, I asked in this thread or elsewhere and is no answer. Can someone please would divide him regularize?

    Hi, at this link:

    http://social.answers.Microsoft.com/forums/en-us/vistawu/thread/5468b6de-46BF-496F-b9e3-dc8a1bf36345

    The post at the 3rd position starting with Dear Kevin merged by microsoft personnel, but the post has nothing to do with the other post in this thread, or any other question I posted.

    Can we please split it out for me.

    The title should read Attn: Kevin Hau - about your post on 25 August, microsoft updates.

    Thank you very much
    :)

    Hi Michelle,

    Welcome to the Microsoft Answers site!

    I've divided your son and responded to them respectively. You can find both threads in the below given links.

    Attn: Kevin Hau - about your post on 25 August, Microsoft updates

    http://social.answers.Microsoft.com/forums/en-us/vistawu/thread/07a9978c-3464-46DA-83b0-2118e932e106/

    Windows update does not update windows defender and so tried to update via windows defender that shows also no update

    http://social.answers.Microsoft.com/forums/en-us/vistawu/thread/5468b6de-46BF-496F-b9e3-dc8a1bf36345

    Hope this information is useful.

    Amrita M

    Microsoft Answers Support Engineer
    Visit our Microsoft answers feedback Forum and let us know what you think.

  • Merge data Question

    I sometimes use the merge feature of Indesign data, normally for small consignments. I came across a problem that I can't figure out a way to get around. It is difficult for me to explain so I'll use an example. A customer wants a person's name followed by title on one line, separated by a comma.

    < < name > > < < name > >, < < title > >

    Easy enough, but what happens if some have nothing in the title field. You end up with 'name '. An unwanted comma remains.

    I also use a code system to make models of variable data for online customers. It allows you to group text so that some text will not appear unless the field is used. It is separated by hooks it. For example, I can make a template for a business card. Some people in this society have a fax number on their cards. Some do not. Entry "fx < < the Fax field > >" would give "fx", followed by the entry of client for the fax. If they have no entry something for the Fax field, he would simply let a stray "fx" that you do not want to be there. In this case, I can use {{fx < < Fax field >}} which includes the text "fx" with the field. If nothing is entered by the customer for the fax, the "fx" will not appear.

    So, back to example 1. Is there a way in InDesign for this where some texts won't show up if a particular field has a value entered?

    I appreciate any assistance with this question because I encounter this problem frequently by mergers.

    A 3rd way: a search/replace simple: search, replace \h$ by anything else

    0.5 seconds!

  • Merge Partition - Space Question

    We have a large table in 10g which has been partitioned from list. As the time has passed data with a valid value is not in any of the lists of the partitions has been inserted several times. These data fall into the default partition

    So we have something like this:

    Table ERRORS

    Partition E_1 values ('A', 'B', 'C')

    Partition E_2 values ('L', ', 'n')-size 600G

    Partition by default E_DEFAULT (but contains data of a single value 'Z') - size 50 G

    Now the seller would like to fix this by adding the values of 'Z' to E_2.

    They offer the following:

    ALTER table split partition (partition E_TEMP, E_DEFAULT) E_DEFAULT ERRORS;

    ALTER table merge E_TEMP, E_2 partition in partition E_2 ERRORS.

    I'm fine with the strategy. I have no doubt that it will work.

    I'm afraid that because the size of the partition is so great the merger will require a 650G extra free in the tablespace. Sellers seem to think that it will just add the 50G to 600G.

    Looking at the documentation, the merge partition section shows:

    "Use the ALTER TABLE ... M ERGE PARTITION statement allows you to merge the contents of two partitions into a single partition. "The two original partitions are deleted, as are all the correspondents index."

    This means to me that it takes two and creates a third, thus requiring the 650G of extra free space.

    But is this always the case if the third partition is actually one of the two being merged?

    For what it's worth, my plan was:

    Failure to Split

    Change the new partition with an empty temp table

    remove the new partition

    Edit E_2 to add the new value

    Insert ERROR select * from temporary table.

    drop temporary table

    I think that this requires free space of 50G.

    Thank you

    My main question, however, and this that I can't test (or do not know how to test) is the solution of partition of merger proposed by the seller requires free space equal to two partitions (in this case 650G) original to work? The seller says no. I think, but can not find documentation or evidence, Yes.

    If the seller says no, ask them for proof. I'm not aware that the internal process has been documented. But you should be able to test quite easily.

    The only reason why a new segment will be created being is if the data would actually be moved. In order to test whether the data is transferred.

    If the data is not moved, it's the same segment as before.

    1 put a line in P1 - examine the IDENTIFIER line

    2 put a line in P2 - examine the IDENTIFIER line

    3 MERGE P2 P1

    4. determine if the data transferred - what ROWID changed?

    The ID will be different if the data has been moved to a new segment.

    create table part_list (State varchar2 (2))
    list partition (State)
    (values of partition p_ca ('CA'),
    values of partition p_wa ('WA'),
    values (default) partition p_default
    );

    insert into part_list values ('CA');

    insert into part_list values ('WA');

    insert into part_list values ("NV");

    Select a State, rowid RID, DBMS_ROWID. ROWID_RELATIVE_FNO (ROWID) fno,

    DBMS_ROWID. ROWID_BLOCK_NUMBER (ROWID) blkno,

    DBMS_ROWID. ROWID_ROW_NUMBER (ROWID) rowno

    of part_list

    STATE, RID, FNO, BLKNO, ROWNO

    CA, AAAV71AAEAAAAs0AAA, 4, 2868, 0

    WA, AAAV72AAEAAAAtEAAA, 4, 2884, 0

    NV, AAAV73AAEAAAAtcAAA, 4, 2908, 0

    ALTER table merge partitions p_ca, p_wa part_list in the p_ca partition

    Select a State, rowid RID, DBMS_ROWID. ROWID_RELATIVE_FNO (ROWID) fno,

    DBMS_ROWID. ROWID_BLOCK_NUMBER (ROWID) blkno,

    DBMS_ROWID. ROWID_ROW_NUMBER (ROWID) rowno

    of part_list

    STATE, RID, FNO, BLKNO, ROWNO

    CA, AAAV74AAEAAAAtjAAA, 4, 2915, 0

    WA, AAAV74AAEAAAAtjAAB, 4, 2915, 1

    NV, AAAV73AAEAAAAtcAAA, 4, 2908, 0

    Note that the ROWID for 'CA' and 'WA' values are different. This means that the lines have been moved. The file number is the same, but the block numbers have changed as to have the line number for 'WA '.

    The fact that existing lines have been moved at all should answer your question about what really makes Oracle. In other words, is NOT just to add the 'WA' line for the existing partitions.

    If you do a SPLIT, but the data of the existing partitions is NOT affected, no data movement is performed. Check this example and see that all existing ROWID components remain the same

    ALTER table part_list split partition p_default ('OR') values

    in (p_or partition, partition p_default)

    He has not given "GOLD" in the partition by default so that Oracle has simply ignored this segment and created a new one for the new partition.

  • Question about the MERGE statement

    Hi all

    I have a small question... I can post code, table creation, etc... but I think this question can be able to be simply answered, if I explain it. If you want me to zip codes, etc... then just ask and I'll do it.

    Here it goes:

    I have a set up merge statement, and I have two columns. One is named ADD_DT, and the other is called LST_UPD_DT.

    Update in the merge statement, the LST_UPD_DT column is updated with the SYSDATE.
    When it is inserted in the merge statement, the ADD_DT column is updated with the SYSDATE.

    So, here is my question:

    Regardless of whether or not the information is updated, the LST_UPD_DT updates the SYSDATE every time. Any advice on how to update the LST_UPD_DT column only if information is changed/updated, so that the information is not changed would be not updated by the SYSDATE? I hope that this question was not too complicated.

    Thank you all and if you want to see the code or examples of table... Please ask and I'll post one. I just thought that this may be able to meet without it.

    Hello

    991769 wrote:
    OK, here's what the table looks like:

    Thank you.

    CREATE TABLE TBL_SUPPLIERS
    (
    SUPP_CD                 VARCHAR2(40 CHAR),
    SUPP_NM                 VARCHAR2(255 CHAR),
    ADD_DT                  VARCHAR2(50 CHAR),
    LST_UPD_DT              VARCHAR2(50 CHAR))
    

    Do not use a VARCHAR2 column for date information. Use a DATE column.

    CREATE TABLE D_SUPPLIERS
    (
    SUPP_CD                 VARCHAR2(40 CHAR),
    SUPP_NM                 VARCHAR2(255 CHAR))
    
    INSERT INTO TBL_SUPPLIERS VALUES (1234, MINING, '03-26-2013 3:33:49 PM', '04-02-2013 9:04:52 AM');
    INSERT INTO TBL_SUPPLIERS VALUES (2345, ELECTRIC, '03-26-2013 3:33:49 PM', '04-02-2013 9:04:52 AM');
    INSERT INTO TBL_SUPPLIERS VALUES (3456, COAL, '03-26-2013 3:33:49 PM', '04-02-2013 9:04:52 AM');
    

    You want people to view the solutions that actually work? Please make sure that your own instructions will actually work. Test and fix your code before posting.
    All INSERT statements you posted fail; You seem to be missing single quotes around string literals. I think you meant:

    INSERT INTO TBL_SUPPLIERS VALUES (1234, 'MINING', '03-26-2013 3:33:49 PM', '04-02-2013 9:04:52 AM');
    ...
    

    Here's one way:

    MERGE INTO  tbl_suppliers     sm
    USING  (
               SELECT  d.*
            FROM              d_suppliers        d
            LEFT OUTER JOIN  tbl_suppliers  t  ON  t.supp_cd  = d.supp_cd
            WHERE   t.supp_cd                            IS NULL
            OR        DECODE (t.supp_nm, d.supp_nm, 0, 1) = 1
           )                       ds
    ON     (sm.supp_cd = ds.supp_cd)
        WHEN MATCHED THEN
            UPDATE SET
                sm.supp_nm = ds.supp_nm,
                sm.lst_upd_dt = SYSDATE
        WHEN NOT MATCHED THEN
            INSERT (sm.supp_cd, sm.supp_nm, sm.add_dt)
            VALUES
            (ds.supp_cd, ds.supp_nm, SYSDATE);
    
    SELECT     *
    FROM     tbl_suppliers
    ORDER BY     SUPP_CD;
    

    This can be more efficient, because it does not generate redo, or triggers, when two tables have exactly the same line.

  • Newbie question on merging 3 - Windows 7 (upgrade) and virtual disk

    Hello

    I apologize if these questions were discussed on other threads, but I looked and did not find those specific to what I do. Since I am a new user, my experience with the merger is limited only to the few days of operational use.

    I received my iMac the other day and wanted to install Windows 7 (upgraded version) using Boot Camp and access either by booting natively to Win7 or through merger to access the Boot Camp. My friend, who has more experience than me has suggested, I use VMware Fusion for Win7 do run a vitural drive and not worth using Boot Camp, and a "hard" partition He said it would be faster and easier to manage (not sure now).

    I set up a disc in this drive and external created 4 partitions, which was intended for Win7. Then I installed VMware Fusion on iMac and went on loading windows on the external drive using the easy method. Easy installation application the activation code for Win7 and I provided at the specified location. Everything was humming along nicely until Windows 7 complained that he could not find a version support for Windows earilier. I had a Windows XP genuine disc ready to throw on the iMac, as soon as she needed, but instead he has cancelled installation.

    Then, I went to Google and searched for some answers and discovered that Win7 install in Fusion without an activation code. I uninstalled VMware and reinstalled, restarted the process, do not put in the Win7 activation code and everything was fine... except now, there is no Windows activation request. I've searched and anywhere to click on a link to activate Windows, or indeed could not find a place to write in the activation key.

    What is happening with this?

    Ron

    Windows installation without a product key is convenient to have more options to activate Windows later.  Don't worry, Windows will "ask" you activate in the near future, but if you are willing to 'true' then go to properties of the icon of the computer and at the bottom you will see the activation state and you can change/enter your product key.

Maybe you are looking for

  • Sound and other issues with Qosmio x 300-11

    Hello I purchased a Qosmio x 300-11s there are a little over 2 months. I have usually more than 1 audio application on at a time, for example radio game world of warcraft, but since today if I try to run more than 1 sound application or a program lik

  • Update BIOS to a6514f

    Hi all! First of all let me to expresss my gratitude to any effort aimed to sat me with this embarrassing question. A Pavilion a6514f which I've upgraded to windows 7 ult 64 bit I would like to make a few timkering so I with - in particular, I would

  • Generation of a test without a module result

    I have a fundamental question on the generation of a test result without calling a module in TestStand. For example, I have a pair of read of a product operations and digital to return the results of a pair of local variables. Now, I want to do a num

  • How can I uninstall windows 2000 Professional, windows xp home edition partition

    at present, there are two windows on my pc, I want to remove windows 2000 Professional but finding enough dificult to do, it causes my pc to slow down.

  • services.exe memory consumption and therefore 15 minutes to start

    services.exe memory consumption and therefore 15 minutes for bootProblem Description: it seems that since the installation of updated KB973687 my Dell Inspiron 640 m takes an age to start. I am running XP SP3 with all updates installed, have 2 x 512