One design issue about merge and equivalent DDL

Hi All,
My DB is 11.1. RAC 4 nodes.
Today I encountered one SQL that did merge and ran very slowly. After tuning, it
cost more than 2 hrs to finish.
According to Oracle manual and my own understanding,
1.MERGE itself can't have inner-partition parallelism. So if the target table is
non-partitioned, PML doesn't work here.
2.MERGE genertes redo and can't be suppressed.
So I think whether an equivalent CTAS works better, considering about daily
increments are relatively large amount comparing to the target table.
Pseudo SQL looks like:
create table new_table
parallel 4 nologging
as
select case
when target_table_join_columns is null
then new_line
when source_table_join_columns is null
then original_line
when both are not null
then updated_line
from target_table t full outer join source_table s
on ... join columns;
(It's just a sample.)
The advantages I can see is:
1. Far less redo.
2. Parallel
The disadvantages I can see is:
1. More spaces
2. Full load not incremental.
I know I have to benchmark it and consider about all cases. But has anybody encountered the similar issues before? And whether you get benefits from this kind of change?
Best regards,
Leon

Hi,
you have to set the correct permissions on the HFMAnswers Folder.
But it depends a bit on your exact requirement....users must be able to save reports under the shared folder or only my folders?
What you need a least are some groups to make distinction between who can see which reports and who can use which functionality within oracle bi.
Do you have that clear? This way you can try to setup a generic security framework.
Kr,
A

Similar Messages

  • An issue about queues and context

    Hi all
    I have a value form one queue with some context and I want to add the same context to another queue
    I have this starting point in the first queuecwith context after each number
    30
    30
    10
    10
    20
    20
    10
    10
    10
    10
    90
    90
    10
    10
    And in the other queue
    100
    100
    100
    100
    100
    100
    100
    100
    100
    100
    100
    600
    100
    100
    100
    100
    100
    100
    The color indicate the context change.
    I want to give the same context of the first queue to the second queue because I am mapping one to one field into the target node.
    The second queue is longer than the first one but that is ok as long as I can get the first value to right context of the first queue
    Thanks

    HI again
    Do I have to use the format by key insted of changing the context.
    I have tried but I am  getting this error
    formatByExample: Queues do not have the same number of values] in class com.sap.aii.mappingtool.flib7.NodeFunctions method
    It is quit a copmlex mapping , I do not think I can use format by key.
    any idea how to change the context
    Thanks

  • Just another issue about fonts and Firefox

    Hello
    I know that new topic about fonts, firefox etc. shows once at week but ...
    See at my probem:
    Firefox@ArchLinux part 1
    http://img265.imageshack.us/img265/4097/linuxl.png
    Firefox@Windows 7 part1
    http://img21.imageshack.us/img21/4931/beztytuujvc.jpg
    Firefox@Archlinux part2
    http://img265.imageshack.us/img265/4615/linux2.png
    Firefox@Windows 7 part2
    http://img515.imageshack.us/img515/2271/schowek01l.jpg
    Firefox@Archlinux part3
    http://img252.imageshack.us/img252/574/linux3.png
    Firefox@Windows7 part3
    http://img526.imageshack.us/img526/6428/schowek01g.jpg
    Like you saw in images above, page under Firefox at my Arch looks ugly, but not every (eg like http://bbs.archlinux.org looks okay).
    My ~/.fonts.conf. (It's from this forum, i think from user @berbs - his one of xorg_font guru )
    <?xml version="1.0"?>
    <!DOCTYPE fontconfig SYSTEM "fonts.dtd">
    <fontconfig>
    <!-- Info:
    xeffects thread: http://forums.gentoo.org/viewtopic-t-511382.html
    http://wiki.archlinux.org/index.php/XOrg_Font_Configuration
    http://antigrain.com/research/font_rasterization/index.html
    http://fontconfig.org/fontconfig-user.html -->
    <!-- http://bugs.gentoo.org/show_bug.cgi?id=130466 -->
    <alias>
    <family>serif</family>
    <prefer>
    <family>DejaVu Serif</family>
    <family>Bitstream Vera Serif</family>
    </prefer>
    </alias>
    <alias>
    <family>sans-serif</family>
    <prefer>
    <family>DejaVu Sans</family>
    <family>Bitstream Vera Sans</family>
    <family>Verdana</family>
    <family>Arial</family>
    </prefer>
    </alias>
    <alias>
    <family>monospace</family>
    <prefer>
    <family>DejaVu Sans Mono</family>
    <family>Bitstream Vera Sans Mono</family>
    </prefer>
    </alias>
    <!-- Reject bitmap fonts in favour of Truetype, Postscript, etc. -->
    <selectfont>
    <rejectfont>
    <pattern>
    <patelt name="scalable">
    <bool>false</bool>
    </patelt>
    </pattern>
    </rejectfont>
    </selectfont>
    <!-- Replace Luxi Sans with a better-looking font - looks terrible at e.g. http://market-ticker.org/ -->
    <match name="family" target="pattern">
    <test name="family" qual="any">
    <string>Luxi Sans</string>
    </test>
    <edit name="family" mode="assign">
    <string>Liberation Sans</string>
    </edit>
    </match>
    <!-- To fix Calibri font - http://forums.fedoraforum.org/showthread.php?p=1045807#post1045807 -->
    <match target="font">
    <edit name="embeddedbitmap" mode="assign">
    <bool>false</bool>
    </edit>
    </match>
    <!-- Replace Calibri font - http://www.funtoo.org/css/article.css
    <match name="family" target="pattern">
    <test name="family" qual="any">
    <string>Calibri</string>
    </test>
    <edit name="family" mode="assign">
    <string>Trebuchet MS</string>
    </edit>
    </match>
    -->
    <match target="pattern" name="family">
    <test qual="any" name="family"><string>fixed</string></test>
    <edit name="family" mode="assign"><string>monospace</string></edit>
    </match>
    <!-- Ubuntu options: lcdnone, lcddefault, lcdlight, lcdlegacy -->
    <!-- hintnone, hintslight, hintmedium, hintfull -->
    <!-- Keep autohint off -->
    <!-- Blurry fonts: Try rgb, bgr, vrgb, vbgr for "rgba" -->
    <!-- Blurry: http://forums.gentoo.org/viewtopic-p-5060979.html#5060979 -->
    <match target="font">
    <edit name="rgba" mode="assign"><const>rgb</const></edit>
    <edit name="autohint" mode="assign"><bool>false</bool></edit>
    <edit name="antialias" mode="assign"><bool>true</bool></edit>
    <edit name="hinting" mode="assign"><bool>true</bool></edit>
    <edit name="hintstyle" mode="assign"><const>hintmedium</const></edit>
    <edit name="lcdfilter" mode="assign"><const>lcddefault</const></edit>
    </match>
    <!-- http://bbs.archlinux.org/viewtopic.php?id=46480 Rubbish font anyway -->
    <!--
    <match target="pattern">
    <test name="family" compare="eq"><string>ProggyCleanTTSZ</string></test>
    <edit name="pixelsize" mode="assign"><double>16</double></edit>
    <edit name="autohint" mode="assign"><bool>false</bool></edit>
    <edit name="antialias" mode="assign"><bool>false</bool></edit>
    <edit name="hinting" mode="assign"><bool>false</bool></edit>
    <edit name="hintstyle" mode="assign"><const>hintnone</const></edit>
    </match>
    -->
    <!-- The bold variant is ugly, so replace it
    <match target="pattern">
    <test name="family" qual="any" compare="eq"><string>ProggyCleanTTSZ</string></test>
    <test name="weight" compare="more"><const>medium</const></test>
    <edit name="family" mode="assign"><string>Bitstream Vera Sans Mono</string></edit>
    <edit name="pixelsize" mode="assign"><double>10</double></edit>
    </match>
    -->
    <!-- Reduce hinting for bold fonts -->
    <match target="font">
    <test name="weight" compare="more"><const>medium</const></test>
    <edit name="autohint" mode="assign"><bool>false</bool></edit>
    </match>
    <!-- Greyscale for small fonts
    <match target="font">
    <test name="size" compare="less_eq"><double>7</double></test>
    <edit name="rgba"><const>none</const></edit>
    </match>
    -->
    <!-- Tweak Courier -->
    <match name="family" target="pattern">
    <test name="family" qual="any">
    <string>Courier</string>
    </test>
    <edit name="lcdfilter" mode="assign"><const>lcdlegacy</const></edit>
    </match>
    <!-- Tweak Courier New -->
    <match name="family" target="pattern">
    <test name="family" qual="any">
    <string>Courier New</string>
    </test>
    <edit name="lcdfilter" mode="assign"><const>lcdlegacy</const></edit>
    </match>
    <!-- From http://forums.gentoo.org/viewtopic-t-511382-start-650.html
    To create difference between small Candara and small Candara bold -->
    <match name="family" target="pattern">
    <test name="family" qual="any">
    <string>Candara</string>
    </test>
    <test compare="less_eq" name="size">
    <double>10</double>
    </test>
    <test name="weight" compare="more">
    <const>medium</const>
    </test>
    <edit name="embolden" mode="assign">
    <bool>true</bool>
    </edit>
    </match>
    <!-- From http://www.fedoraforum.org/forum/showthread.php?t=186789&page=7 -->
    <match target="font">
    <test compare="eq" name="family">
    <string>Consolas</string>
    </test>
    <edit mode="assign" name="hintstyle">
    <const>hintslight</const>
    </edit>
    </match>
    <match target="font">
    <test compare="eq" name="family">
    <string>Inconsolata</string>
    </test>
    <edit mode="assign" name="hintstyle">
    <const>hintslight</const>
    </edit>
    </match>
    <!-- From http://bugs.gentoo.org/show_bug.cgi?id=233729 -->
    <match target="font">
    <test compare="eq" name="family">
    <string>Andale Mono</string>
    </test>
    <edit mode="assign" name="hintstyle">
    <const>hintfull</const>
    </edit>
    <test compare="less" name="weight">
    <const>medium</const>
    </test>
    <test compare="less_eq" name="pixelsize">
    <double>7</double>
    </test>
    <edit mode="assign" name="antialias">
    <bool>false</bool>
    </edit>
    </match>
    <match target="font">
    <test compare="eq" name="family">
    <string>Arial</string>
    </test>
    <edit mode="assign" name="hintstyle">
    <const>hintfull</const>
    </edit>
    <test compare="less" name="weight">
    <const>medium</const>
    </test>
    <test compare="less_eq" name="pixelsize">
    <double>7</double>
    </test>
    <edit mode="assign" name="antialias">
    <bool>false</bool>
    </edit>
    </match>
    <match target="font">
    <test compare="eq" name="family">
    <string>Comic Sans MS</string>
    </test>
    <edit mode="assign" name="hintstyle">
    <const>hintfull</const>
    </edit>
    <test compare="less" name="weight">
    <const>medium</const>
    </test>
    <test compare="less_eq" name="pixelsize">
    <double>7</double>
    </test>
    <edit mode="assign" name="antialias">
    <bool>false</bool>
    </edit>
    </match>
    <match target="font">
    <test compare="eq" name="family">
    <string>Georgia</string>
    </test>
    <edit mode="assign" name="hintstyle">
    <const>hintfull</const>
    </edit>
    <test compare="less" name="weight">
    <const>medium</const>
    </test>
    <test compare="less_eq" name="pixelsize">
    <double>7</double>
    </test>
    <edit mode="assign" name="antialias">
    <bool>false</bool>
    </edit>
    </match>
    <match target="font">
    <test compare="eq" name="family">
    <string>Impact</string>
    </test>
    <edit mode="assign" name="hintstyle">
    <const>hintfull</const>
    </edit>
    </match>
    <match target="font">
    <test compare="eq" name="family">
    <string>Times New Roman</string>
    </test>
    <!-- Looks better with lcdlegacy, e.g. http://www.billiardworld.com/glossary.html -->
    <edit name="lcdfilter" mode="assign"><const>lcdlegacy</const></edit>
    <edit mode="assign" name="hintstyle">
    <const>hintfull</const>
    </edit>
    </match>
    <match target="font">
    <test compare="eq" name="family">
    <string>Trebuchet MS</string>
    </test>
    <edit mode="assign" name="hintstyle">
    <const>hintfull</const>
    </edit>
    <test compare="less" name="weight">
    <const>medium</const>
    </test>
    <test compare="less_eq" name="pixelsize">
    <double>7</double>
    </test>
    <edit mode="assign" name="antialias">
    <bool>false</bool>
    </edit>
    </match>
    <match target="font">
    <test compare="eq" name="family">
    <string>Verdana</string>
    </test>
    <edit mode="assign" name="hintstyle">
    <const>hintfull</const>
    </edit>
    <test compare="less" name="weight">
    <const>medium</const>
    </test>
    <test compare="less_eq" name="pixelsize">
    <double>7</double>
    </test>
    <edit mode="assign" name="antialias">
    <bool>false</bool>
    </edit>
    </match>
    <match target="font">
    <test compare="eq" name="family">
    <string>Webdings</string>
    </test>
    <edit mode="assign" name="hintstyle">
    <const>hintfull</const>
    </edit>
    </match>
    </fontconfig>
    My xorg.conf
    # nvidia-xconfig: X configuration file generated by nvidia-xconfig
    # nvidia-xconfig: version 1.0 (buildmeister@builder62) Wed May 27 01:58:49 PDT 2009
    Section "ServerLayout"
    Identifier "Layout0"
    Screen 0 "Screen0"
    InputDevice "Keyboard0" "CoreKeyboard"
    InputDevice "Mouse0" "CorePointer"
    EndSection
    Section "Files"
    EndSection
    Section "InputDevice"
    # generated from default
    Identifier "Mouse0"
    Driver "mouse"
    Option "Protocol" "auto"
    Option "Device" "/dev/psaux"
    Option "Emulate3Buttons" "no"
    Option "ZAxisMapping" "4 5"
    EndSection
    Section "InputDevice"
    # generated from default
    Identifier "Keyboard0"
    Driver "kbd"
    EndSection
    Section "Monitor"
    Identifier "Monitor0"
    VendorName "Unknown"
    ModelName "Unknown"
    HorizSync 28.0 - 33.0
    VertRefresh 43.0 - 72.0
    Option "DPMS"
    DisplaySize 444 277 # 96 DPI @ 1680x1050
    EndSection
    Section "Device"
    Identifier "Device0"
    Driver "nvidia"
    VendorName "NVIDIA Corporation"
    Option "NoDDC" "true"
    Option "UseEdidDpi" "false"
    Option "DPI" "96 x 96"
    EndSection
    Section "Screen"
    Identifier "Screen0"
    Device "Device0"
    Monitor "Monitor0"
    DefaultDepth 24
    SubSection "Display"
    Depth 24
    EndSubSection
    EndSection
    Section "Extensions"
    Option "Composite" "Enable" # for 3D, alpha desktop effects
    EndSection
    Section "DRI"
    Mode 0666 # helps flash performance
    EndSection
    I even used cairo,libxft,... - hacks "-ubuntu", but my issue was still there Now I have clean that packages, without "-ubuntu".
    I've copied TTF fonts from W7 into my Arch.
    I have up to date system under Gnome 2.28.
    Sorry for my gramma

    Gen2ly wrote:adding a whole slew of things probably not doing much good
    Now, why on Earth would I do that? Think I'm creating this file at random?? I'm continually testing and refining the rules. The purpose of the rules is to compensate for fontconconfig's inability to do such tweaking automatically. The end result is that fonts look better - I'm surprised that I need to point this out, it should be blatantly obvious.
    hintslight should be used until the mid or up to the upper 100dpi range
    That's meaningless by itself, you must include pixelsize in the equation. The majority of Microsoft's fonts, as well as various other fonts, actually look better when small using hintfull.
    is a hack... Simplify, simplify, simplify.
    Well, yeah, of course, it would be great if fontconfig did all the tweaking for us - but it doesn't. Fonts vary greatly, so fontconfig needs to be told the best ways to render various fonts, at various sizes/weights. You don't seem to understand this point, judging by this and your other posts regarding fonts - same as skottish, IIRC. Don't you guys have eyes?
    Anyway, here's my current ~/.fonts.conf, which continues to be improved.

  • XI Design Issue- BPM Usage and Performance

    Hi All
    System A is sending mutiple messages to XI and every message has a node called TEVEN which has line Items. The TEVEN is repeated and based on EId value. The receiver has to be decided, that means a single message can have multiple same Eid which has to be colleted in one set of Message and XI will keep on receiving such messages for 30 minutes and after the same grouping from all messages and their payload being done a file will be created to different Receivers (in case of Eid 1 the receiver will be System A in case of Eid 2 the receiver will be System B)
    How do I Achieve this in my BPM - the problem is to go through every message payload and then collect TEVEN header in one single message and keep on doing so for all messages received within 30 minutes and then using file adpater put those files on File Server (The receiving system desires to have only one file and will check every 30 minutes for the file)
    Any thoughts on designing this scenarion in XI are welcome. And also regarding comments on designing a BPM to handle this and the performance related with that.
    <ns0:TEVEN>
    <ns0:EText />
    <ns0:EId>0001</ns0:EId>
    </ns0:TEVEN>
    <ns0:TEVEN>
    u2026u2026.
    u2026.
    </ns0:TEVEN>
    BR / Swetank

    Hi,
    If you have collect the messages till 30 mins and then create a file then i see you have to use BPM only.
    You can use the correlation for different  Eid, or you can use the option of Enhanced Receiver Determination.
    The help for both is available on SDN.
    with regards,
    Ravi Siddam

  • Creating one design for both A4 and Letter Sizes

    Hi There!
    I'm new to the forum. I've been tasked with creating individual catalogue pages for a global company. Some divisions in the US use 'Letter' and here in the UK we use 'A4'.
    I was wondering if there's a way of creating a one page design - say in A4 - that when exported as PDF will print to both page sizes? I wondered if I could set the print settings in advance so the page automatically prints to fit page? Unfortunately haven't been able to find any advice on this.
    Any other suggestions would be very much appreciated.
    Hayley

    The answer is that the same page can be printed, scaled, in both formats, but it won't be pretty if you do it that way. In CS6 you can create an Alternate Layout in the same document so that you have both page sizes and can adjust the layout to fit the differnt shapes, then choose which to output. You can use Linked Stories so that you only need to edit one and the other will update.

  • One last question about building and formatting

    When I am writing my DLT do I need to remove the .layout file and the Data.lay file? It will already be built but I will be using DVDSP3 to write the DLT. Are they removed automatically? The manual seems ambiguous about this.
    Also I need to output in the DDP2.0 format (Its a DVD-9). I can't select this without choosing build and format. I have been testing by building to my desktop and testing on the Apple DVD player. If I choose build and format will it rebuild the project? And if it rebuilds is it possible for me to get something besides what I have been checking? I just want to make sure I write the same thing to the DLT that I have been checking.

    you can also get ddp by just doing format as opposed to build and format. You can not open a ddp image in dvd player to test it, so there really is no use of building it to your hard drive. If you have already built the project and you have a video ts folder, then you can go under format and choose the dlt drive as your location and make sure you are referencing the folder with the videots in it.
    there wont be anychanges from the video ts after it has been built, it is merely converting it into a ddp image.

  • One Simple Question About Flash and XP

    Does the latest version of Flash work with IE8 and/or the latest Firefox version, on a Windows XP sp3 Computer?
    Thanks for any help.

    It is best to follow Adobe's instructions for updating its software, which varies by the product & versions involved. This usually works well but Adobe is one of those companies big enough to play by its own rules, sometimes ignoring Apple's developer guidelines or inventing its own API's instead of using the Apple provided ones that do the same thing, so there is a small chance things won't go as expected even when you follow the instructions to the letter.
    If this happens it is best to seek advice on a product by product, version by version basis.

  • Design question about APs and WLC

    We need to know if (and how if possible) a WLC may control several APs, configured in a parallel grid array as bridges:
    CPD---AP(l)------air---------AP(r)---AP(nb)
       |--AP(l)-------air--------AP(r)---AP(nb)
       |--AP(l)-------air--------AP(r)---AP(nb)
    The AP(r) right are non-root, the AP(l) left are the root connected to the CPD, there may be several bridge. We need to control all of them, specially the ones in the right = AP(r) of the bridge. And of course the AP(nb)= non-bridge
    We would want to know if we can regulate how the right antenaes connect to the left. Right antenaes need to be on a moving platform, and there is no possible interconnection among the AP(r).

    We need to know if (and how if possible) a WLC may control several APs, configured in a parallel grid array as bridges:
    CPD---AP(l)------air---------AP(r)---AP(nb)
       |--AP(l)-------air--------AP(r)---AP(nb)
       |--AP(l)-------air--------AP(r)---AP(nb)
    The AP(r) right are non-root, the AP(l) left are the root connected to the CPD, there may be several bridge. We need to control all of them, specially the ones in the right = AP(r) of the bridge. And of course the AP(nb)= non-bridge
    We would want to know if we can regulate how the right antenaes connect to the left. Right antenaes need to be on a moving platform, and there is no possible interconnection among the AP(r).

  • RTF template design issue for header and body section

    Hi All,
    I have a RTF template having header and body sections.
    in header section i have order number, customer number etc.
    in body part i am displaying details for the respective order.
    But the problem is in header part my query is returning multiple row , so my requirement is for each row i.e order, i need to display the details accordingly.
    Ex: Header query returns order number : 1,2,3
    in my page i need below way:
    Order number :1
    a,b,c
    order number :2
    c,d,e
    order number :3
    g,h,g
    I tried to use loop in header section , but it is repeating only for header part not body part please help me on this.
    Thanks
    Deb

    Avinash thanks for your help,
    Actually in my requirement the header level and line level invoice numbers are different, in header level i have different invoices and for each invoice i need to display some other invoices along with some data.
    I have sent you the respective RTF file and Sample XML file to your mail, could you please help me on this, i am struggling whole day on this.
    the link between the header and line section is header_id.
    Thanks in advance
    Deb

  • Approval Procedure for Issue to Production and Receipt from Production

    Hi All,
    Is there a way to create an approval procedure for Issue to production and Receipt from production?
    Thanks.
    Eric

    Hi Riyaz,
    Yes it is not in Standard SAP Business One.  But is there a way to create one for issue to production and receipt from production? 
    Thanks.
    Eric

  • One design for computer and mobile

    Hi, i'm kind of a nubie to Muse CC, but love what i've seen so far...so much so that i also purchased a one-year subscription to muse-themes.com, in order to download a theme that would give me a head-start with a new portfolio site i have to do for myself.
    Just to explain why i'm only a noob to Muse CC, but not to web-design as a whole:
    I have used the Creative Suites for many, many years, and before that used Photoshop and Dreamweaver to "hand program" my sites, so i'm an HTML veteran of 15 years...no experience with Javascript or anything like that, but i've done my own sites from scratch since the old Netscape days.
    Back to my issue/question:
    After modifying the template i downloaded from muse-themes.com and doing a first few hours of customization on it (some text, headers and images) and using business catalyst to preview what i've done, and quite liked it for a first start, but when checking the design on my iPad, i discovered with disappointment that not only did it not show *any* of my customizations (only the original, generic theme design and content), but even then, menu items had weird glitches, and the long scrolling content of the computer version didn't appear after the first couple of page-heights.
    Let's forget about the glitches for moment...my main question is:
    If a theme has been designed with Desktop, Tabel and Phone versions in mind, will i have to maintain content and all changes *separately* for all 3 platforms?! is there a way to "sync" changes between platforms...in other words, since Computer and Tablet versions should pretty much be exactly the same, can i have Muse automatically interpret what i do for the Computer version *also* for the Tablet version? i do understand that the Phone version should get special attention, but even then, shouldn't text and header changes "trickle down" through all versions of the site?
    Am i doing something wrong here, or is building 3 separate versions independently really what i am expected to do?
    I keep seeing many references to "responsive UI designs"...is this why people work on one responsive design, rather than on 3 separate versions, or are those issues not really related?
    Excuse my naive questions, but i have a difficult time believing that Muse CC, and/or a custom theme, purchased from a reputable 3rd party company (such as muse-themes), would require me to maintain 3 websites for 3 device platforms, with no "communication" between the 3 during the design process...there must be a way to "sync" my changes/updates, or is this really so?
    Just to illustrate what i am talking about, here is the first revision of the theme i purchased:
    http://kruegervp.businesscatalyst.com/index.html#top

    Hope I can help here .....
    The first issue is most likely a Business Catalyst caching issue that pops up occasionally. Or it could be that the original template had a Tablet view done and that is what you are seeing instead of the desktop view.
    Yes, you will need to maintain content seperately on the different views. This is actually a good thing in my opinion as you likely won't want all the same content on all three.  As for the responsive sites, while yes you do have to only update once it also can take a much longer time to develop to get consistant results. With the so many different browser widths now it is getting more and more difficult to display the site consistantly and properly.
    So while one may be more to update it is much less to develop and the other is much more to develop but less to maintain. It works out in the end.

  • HT4910 Have two phones with same apple id as I got one for my hubbie .he tried to back up his numbers in I cloud . Our contacts have now merged and neither can delete from our phone without it coming off the other . Any ideas how we can stop this

    Have two iPhones with the same id as I got hubbie one in week and when I got it they asked for email address so I gave the one we use, so when my husband started phone up he just put my password in. When he tried to back his numbers on iCloud they all appeared on my phone and now I can't delete his numbers without them deleting on his phone as well . Any help would be appreciated.

    You'll have to migrate one of the phones to a different account, then delete the other person's data from each account (you can continue to share the same Apple ID for purchasing from the iTunes and app stores). 
    Decide which iPhone will be keeping the current iCloud account.  On the one that will be changing accounts, if you have any photos in photo stream that are not in your camera roll or backed up somewhere else save these to your camera roll by opening the photo stream album in the thumbnail view, tapping Edit, then tap all the photos you want to save, tap Share and tap Save to Camera Roll. 
    Once this is done, go to Settings>iCloud, scroll to the bottom and tap Delete Account.  (This will only delete the account from this phone, not from iCloud.  The phone that will be keeping the account will not be effected by this.)  When prompted about what to do with the iCloud data, be sure to select Keep On My iPhone.  Next, set up a new iCloud account using a different Apple ID (if you don't have one, tap Get a Free Apple ID at the bottom).  Then turn iCloud data syncing for contacts, etc. back to On, and when prompted about merging with iCloud, choose Merge.  This will upload the data to the new account.
    Finally, go to icloud.com on your computer and sign into each iCloud account separately and manually delete the data you don't from each account.

  • Data mart from two DSOs to one - Loosing values - Design issue

    Dear BW experts,
    I´m dealing with a design issue for which I would really appreciate any help and suggestions.
    I will be as briefly as possible, and explain further based on the doubts , questions I received in order to make it easier go through this problem.
    I have two standard DSOs (DSO #1 and #2) feeding a third DSO (DSO #3), also standard.
    Each transformation DOES NOT include all fields, but only some of them.
    One of the source DSO (let´s call it DSO #1) is uploaded with a datasource that allows reverse type of records  (Record Mode = 'R'). Therefore some updates on DSO #1 comes with one entry with record mode 'R' and a 2nd entry with record mode = 'N' (new).
    Both feeds are delta mode, and not the same entries are updated through each of them, but the entries that are updated can differ (means an specific entry (unique key values)  could be update by one of the feeds, but no updates on the 2nd feed for that entry).
    Issue we have:  When a 'R' and 'N' entries happen in DSO #1 for any entry, that entry is also reversed and re created in the target DSO #3 (even being that not ALL fields are mapped in the transformation), and thefore we loose ALL the values that are exclusively updated through DSO #2, becoming blank.
    I don´t know it we are missing something in our design, or how should we fix this issue we have.
    Hope I was more or less clear with the description.
    ´d really appreciatted your feedback.
    Thanks!!
    Gustavo

    Hi Gustavo
    Two things I need to know.
    1. Do you have any End Routine in your DSO? If yes, what is the setting under "Update behavior of End Routine Display"....Option available right side of Delete Button ater End Rouine.
    2. Did you try with Full Load from DSO1 and DSO2 to DSO3? Do you face the same problem?
    Regards
    Anindya

  • I have iPhone 4, wife has 3GS. Each have our own PC but one itunes account and icloud. Now have realized that our contacts have merged and appear in duplicate on devices and PC's. If i delete contact it deletes on hers as well. ***! Over!

    Also, if we both have iMessage on and someone sends me message she gets it as well and vice-versa

    CFN2 wrote:
    Also, if we both have iMessage on and someone sends me message she gets it as well and vice-versa
    This happens when you try to use the same Apple ID for iMessage.  One of you needs to change by going to Settings>Messages>Receive At, tap the Apple ID at the top, sign out, sign back in using a different Apple ID.  If you don't have one, you can create one here: https://appleid.apple.com (you will need a separate email address to create one).
    On your merged contacts issue, this happens when you sync contacts both phones to the same iCloud account.  To correct this, on one of the phones go to Settings>iCloud and turn off syncing for each of the services (contacts, calendars, etc.), when prompted choose to keep the data on the phone.  Then scroll to the bottom and delete the iCloud account (it only deletes the account from this phone).  Then set up a new iCloud account with a different Apple ID and turn on syncing again.  You will need to go to https://www.icloud.com/ for each account and delete the unwanted contacts.  Then you should be good to go.

  • I am running osx version 10.6.8 with safari 5.0.5.  recently i ran one of those recommended upgrades and now Safari continually quits citing .WinASOEasyTweakVKey.Gen.tmp plug-in.  how in the world do i combat this issue?  thank you!

    I am running OS X, version 10.6.8 with safari 5.0.5.  recently i ran one of those recommended upgrades and now Safari continually quits citing .WinASOEasyTweakVKey.Gen.tmp plug-in.  how in the world do i combat this issue?  thank you!  I have reset Safari several times.
    Another new problem is Firefox telling me, when the e-mail window is open, that the window must run in 32 bit.  The window is then disabled and then i have to restart Firefox.
    Thank You for any help/hope you can give me with these issues.  deborah

    You’ve been infected with the “Flashback” malware. See this Apple support document:
    About Flashback malware
    Back up all data, if you haven't already done so.
    From the menu bar, select
     ▹ Software Update
    to install the latest Java update, as well as any other available updates. That should clear the infection in most cases. You must update to the latest version of OS X 10.6 or 10.7 before you can install the Java update.
    The removal tool runs automatically in the background and is then deleted. Don’t look for something to click. If the malware is removed, you’ll be notified.
    After you’ve secured your system — not before — change every Internet password you have, starting with banking passwords, and check all financial accounts for unauthorized transactions.

Maybe you are looking for