How use Import Utility for Migration to 10g

Hi everybody,
I want to upgrade Oracle 8 - 9i Databases to 10gR2 using Export/Import Method. Do I use FULL Import or TOUSER Import Method?
1) The problem of a FULL import is the next:
A FULL IMPORT imports objects from SYSTEM, OUTLN, DBSNMP (and this from an earlier version).
Some objects are imported with success and some others are rejected. There are too many errors.
2) And TOUSER option work well but doesn't import the following objects:
TOUSER = (USER1, USER2…USERn)
Profiles
Public database links
Public synonyms
Roles
Rollback segment definitions
Resource costs
Foreign function libraries
Context objects
System procedural objects
System audit options
System privileges
Tablespace definitions
Tablespace quotas
User definitions
Directory aliases
System event triggers
Do you have some suggestion?
Regards,
Azizollah

Hi,
I understand that now. I have to make a Full export/import because the following objects can only import by a full method.
-     Profiles
-     Public database links
-     Public synonyms
-     Roles
-     Rollback segment definitions
-     Resource costs
-     Foreign function libraries
-     Context objects
-     System procedural objects
-     System audit options
-     System privileges
-     Tablespace definitions
-     Tablespace quotas
-     User definitions
-     Directory aliases
-     System event triggers
Regards
Azizollah

Similar Messages

  • GroupWise Import Utility for Microsoft* Outlook* 7

    Hello:
    I have the following problem: Have client and server Groupwise 7 SP1
    installed and two .PST files. I use import utility for import my pst
    files to groupwise but i obtained error during the migration.
    Groupwise client show Novell Groupwise Groupwise Exchange Archive (PST)
    file has encountered a problem and needs to close.
    Error Signature gwpstmig.exe ModName: gwmsp132.dll.
    I can not import my pst file.

    Hi,
    This tool is works great with emails but doesn't work with recurrent
    appointments or tasks. The outlook contacts is imported as emails
    message but it doesn't imported as contacts to groupwise contacts folder.
    Regards
    > [email protected] wrote:
    >
    > > I can not import my pst file.
    >
    > Try going to www.advansyscorp.com and download the Formativ Runtime
    version
    > and the Personal Outlook Converter. I think this will solve your
    problem,
    > and it's what I use for all stand-alone PST conversions these days.
    >
    > --
    > Danita Zanre
    > Novell Support Forums Volunteer
    > GroupWise 7 Upgrade Guide!
    > www.caledonia.net/gw7upg.html

  • GroupWise 7 Import Utility for Microsoft Outlook B

    Hi,
    We use Outlook with the GroupWise Connector, but now we want to migrate to
    the GroupWise client.
    Most of the users have created a PST file in outlook.
    I want to convert the PST files with the novell tool "GroupWise 7 Import
    Utility for Microsoft Outlook B".
    If I run the tool when I am connected to the archive the folder structure
    is created, but only 1% of the mails get restored!!
    Is there sometghing I missed?
    I have tried to convert the PST file to an older version and I tried to run
    scanpst, but the outcome is the same!!
    Does someone have a suggestion?
    Thanks,
    Hein

    I would totally agree about the advansys/formativ product. We converted
    ..PST files that in some cases were 15 to 21 GB (yes gigabytes) in size and
    had perfect results. It just takes a long time with PST files that size.
    Best part is the Outlook product from advansys is FREE! You install it on a
    workstation that has both GroupWise and Outlook. It plugs itself into the
    GroupWise client and you start the process from GW client. It goes out to
    the Exchange system and/or to the .PST files and begins the migration.
    Scott Kunau, CDE, MCNI
    eDirectory/GroupWise Consultant
    Innovative Global Technology Group
    Cincinnati, Ohio
    >>> On 2/16/2007 at 6:11 PM, in message
    <[email protected]>, Danita
    Zanre<[email protected]> wrote:
    > [email protected] wrote:
    >
    >> Does someone have a suggestion?
    >
    > Quite honestly, the best PST converter I've ever used is the Advansys
    > Personal Outlook pack - if you go to www.advansyscorp.com and get the
    > Formativ runtime and the free Personal Outlook Utility you will be quite
    > happy I think.

  • HT4796 any idea how long it takes for migrate process. Is it the best way to transfer old computer files to your mac?

    Any idea how long it takes for migrate process to complete. Is it the best way to transfer file from your pc to mac?

    If you are using Migration Assistant with a WiFi connection expect 12+ hours, 24 hours is possible.
    If you are using hardwired network connections expect 4 to 8 hours.

  • Hello , I want to ask some question about ipads \  How powerful is the iPad?  How useful is it for reading books, newspaper or magazines or for surfing the web? Can you identify any shortcomings of the device?   please help me :(

    Hello ,
    I want to ask some question about ipads \
    How powerful is the iPad? 
    How useful is it for reading books, newspaper or magazines or for surfing the web?
    Can you identify any shortcomings of the device?  
    please help me

    it's less powerful than your average computer. THink of it like a netbook but with a better processor.
    It'll do fine for surfing (although if you browse a lot of flash based sites you will need to get a third party browser since safari doesn't accommodate it)
    You may do OK on reading books, papers or magazines, especially if they have apps, but the ipad's screen is backlit, so it doesn't work well outdoors and you may need to fiddle with the brightness so that you don't get eye strain (it's just like doing too much reading from a computer screen)
    I would say the biggest short comings are data transfer. Apple's preferred work flow is that everything is done via iTunes or the internet....well people dont' always have 100% reliable always on internet access so you can find yourself in a situation where you can't get things on/off the iPad.
    By and large, it's a good device for day to day stuff, but is not a computer replacement.

  • How used single ssl for tow exchange server without clustering

    how used single ssl for tow exchange server without clustering
    exchange 2003 std fron-end server
    used for add new server for owa failover or standby 

    Olivia, hopefully by now you have solved your issue but just for the sake of answering that question here so that people having the same issue can later find it I'll go through the motions:
    there are a couple of ways you can achieve this.
    A. get a certificate for free out there
    B. generate your own self signed "fake" certificate.
    certutil will certainly let you do this, here's how:
    1. First, create a file/directory layout to store your certificates
    mkdir -p /path/to/certificates/selfsignedCA2. Initialize a database for the certificate you want to create
    certutil -N -d /path/to/certificates/selfsignedCA -P "ca-"3. Create a self-signed CA certificate
    certutil -S -x -n "ca-cert" -s "cn=SelfSigned CA Certificate,dc=yourSuffix" -t CTPu -v 120 -d /path/to/certificates/selfsignedCA -P "ca-" -5Note: when prompted, select choice (5) SSL CA and 'y' for critical extensions
    4. Export the your newly created self-signed CA certificate in PEM format
    certutil -L -d /path/to/certificates/selfsignedCA -P "ca-" -n "ca-cert" -a > /path/to/certificates/selfsignedCA.pemthat should get you going
    -=arnaud=-

  • How to import image for display in APPLICATION

    1.how to import the image by using java APPLICATION and display it on the textarea that you have been created.
    2.how to store the image into the file.
    3. what class should i used?
    4. how to create an object to keep track the image in java application.
    * important : not java applet.
    plzzzzzzz.
    regards fenny

    You can use Graphics package for importing images in Java applications. But I am afraid you cannot display it on Text area, you can display it on JPanel, or JLabel or some container like this.
    Check this example.
    http://www.javaalmanac.com/egs/java.awt/DrawImage.html

  • DTW--  How to Import  Issue for Production

    Hi ,
             How do i import Issue for Production Through DTW.
    Thanks & Regards
    somi mishra

    hello,
    why do you want to use DTW to issue for production ? You could use backflush as issue method so that you can skip issue for production job. If you have issue for production batch job which it means you want to add all the qty of RM issued to production one times and all at onces for more than 10 PO, I think it is better to use addon. You create an excel template and export the data to be txt file, the txt file imported to the issue for production form using the addon. I just compare this situation with the client request in long time ago. they request fast and not manual sales order creation from quotation. just to compare it to your situation but need your detail explanation.
    Rgds,

  • How to import *.pfx for 2 way SSL Web Service?

    Hello,
    We are trying to create web service consumer where 2 way SSL is needed.
    We have exp_pfx_cert.pfx certificate. As far as we know there is need to convert it to PSE and then import in STRUST. Next steps like RFC, service consumer should be as usually.
    PFX -> PSE
    We tried to use sapgenpse but there was error like in attached image.
    ROOT CA certificate is in another text file.
    How to import this pfx + ROOT CA into SAP STRUST ?

    In smicm i have:
    *** WARNING => Connection request from (30/4018/1) to host: xxx.xxx.xxx.xxx, service: 443 failed (NIECONN_REFUSED
    RM-T30, U4018, 800 XXXXXXX, T61, 20:56:44, M1, W3, SM59, 2/2 {00010018} [icxxconn_mt.c 2222]
    Maybe this is firewall issue...
    We will use many certificates for one destination webserwice to log in so I think we will have to create the same amount of client identities and SM59 connections as certificates.
    Do we have to create client identity in special way (like there: http://scn.sap.com/people/jens.gleichmann/blog/2008/10/31/calling-webservices-from-abap-via-httpsssl-with-pfx-certificates  using PSE) or just "Create" and leave default values?

  • Using Disk Utility to Migrate TM to a New Hard Drive

    I'm posting this for search/google posterity:
    Along with SuperDuper and CCC, plain old Disk Copy works perfectly for migrating a TM backup from one HD to a new, empty one. What I did:
    1. Turn off TM
    2. Go to Restore tab of Disk Utility
    3. Set existing TM HD as the source, and the new HD as the destination
    4. Click Restore button. Depending on the source HD size, this could take a while. My 400 GB source drive took about an 1.5 hours, with verification.
    5. When done, you will have two HDs with the same name. Change the source drive's name.
    6. Turn TM back on.
    If all went well, TM should begin using your new HDs backup folder without a hitch.

    This is great info. I use a 160gb portable drive with my MacBook Pro as my TM device. I have a fear that if anything happens to my laptop, the portable drive would be lost too since I carry them together. Ideally, I would like to periodically backup the portable drive to the Maxtor I have at home too and this seems like the easiest way to do it.
    My question is, if I use the method described here with Disk Utility, does my Maxtor HD need to be a dedicated TM drive too? Will I have to create a partition so that I can continue to use my Maxtor to archive my data?

  • Import utility for Security

    Hi All,
    I need to perform an equivalent of the Essbase MaxL statement "alter user UserX remove from group GroupX" through the import utility in Shared Services, since the Essbase security is externalized to Shared Services.
    Can anyone help me on the above.
    Thanks in advance,
    Raja

    Hi,
    If you use the CSSimportexport utility, update the importexport.properties file with your environment details.
    Set it up to read in .csv
    In the csv enter the users you want to remove from groups e.g.
    #group_children                    
    id     group_id     group_provider     user_id     user_provider
    EssGroup               testuser     Native Directory
    so the id field has the group name, the user_id has the user name you want to remove from the group
    In the importexport.properties file make sure you have the following.
    # The import operation to perform.
    # Options are: CREATE, UPDATE, CREATE/UPDATE and DELETE
    import.operation=delete
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • How to import balance for business partner by DTW

    Hi all .
    Now , I want to import balance for Business partner by Data trasfer workbench , but I don't know use template ,
    Please help .

    Hi Tranba,
    I would advise using the Service AR Invoice/AP Invoices to import balances of the Customers & Vendors.
    By doing this you will be able to accept/make payments against these balances which you will not be able to do if you import the balances using Journal Entries.
    To import debit (positive) balances of your customer, use the oInvoices template in DTW. Otherwise for credit balances (balances where you owe money to customer) use the oCreditNote template.
    Simlarly for Vendors, use the oPurchaseInvoice template (credit balances) & oPurchaseCreditNote template (debit balance)
    Hope this information will help you in uploading the balances as per the requirements.
    All the best!
    Regards,
    Gyanesh

  • Using bundlemigrate.xml for migration to ZCM

    Has anyone got any experience using the bundlemigrate.xml file. I saw the coolsolution article on this and thought it would it would fit my environment. But haven't got it to work.
    We are currently using ZFD4, rather than migrate apps into ZCM I have built new apps in ZCM.
    The problem we have is that we have multile sites with the same app but differently GUIDs in ZFD4 (multiple app containers without using GUID sync). So using the bundlemigrate.xml file, seemed likes the only solution with or without an app migration.
    I have built a kix script to read the registry of the PCs and match the GUIDs of ZFD4 to ZCM. But it appears that the bundlemigrate file is ignored on PCs. I was wondering if anyone had any knowledge on this approach and if I need to trigger another file on the PC/registry key during the migration for bundlemigrate to be read. This is to eliminate apps being redeployed to hardware.
    I have an SR open with Novell, but this doesn't look good as ZFD4 is not supported. However, this doesn't help me move to a supported environment.
    My current script.
    Reads the registry and outputs to a file with GUIDs.
    This file is read back in if a match is found to a bundle in ZCM, a temporary bundlemigrate file is built.
    The agent is deployed with an autoit, passing it registration information, based on computer information.
    The new bundlemigrate file is copied into location.
    Run Once key added to perfrom a zac refresh
    The machine is rebooted
    my bundlemigrae file looks like:-
    <?xml version="1.0"?>
    <BundleList xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://novell.com/zenworks/bundle/MigrateZEN7" >
    <Bundle ID="54686252bbf72464a7d642c6bac3319d" Version="4" Installed="TRUE" />
    </BundleList>
    Any assistance welcome.

    sgardiner,
    Unfortunately it doesn't seem to work any more since 10.3.2
    The procmon tool shows that ZCM 10.3.2/3 agents query file attributes of BundleMograte.xml but don't read the content of the file.
    SR with Novell about this issue is open.
    Regards,
    Harald
    Originally Posted by sgardiner
    Has anyone got any experience using the bundlemigrate.xml file. I saw the coolsolution article on this and thought it would it would fit my environment. But haven't got it to work.
    We are currently using ZFD4, rather than migrate apps into ZCM I have built new apps in ZCM.
    The problem we have is that we have multile sites with the same app but differently GUIDs in ZFD4 (multiple app containers without using GUID sync). So using the bundlemigrate.xml file, seemed likes the only solution with or without an app migration.
    I have built a kix script to read the registry of the PCs and match the GUIDs of ZFD4 to ZCM. But it appears that the bundlemigrate file is ignored on PCs. I was wondering if anyone had any knowledge on this approach and if I need to trigger another file on the PC/registry key during the migration for bundlemigrate to be read. This is to eliminate apps being redeployed to hardware.
    I have an SR open with Novell, but this doesn't look good as ZFD4 is not supported. However, this doesn't help me move to a supported environment.
    My current script.
    Reads the registry and outputs to a file with GUIDs.
    This file is read back in if a match is found to a bundle in ZCM, a temporary bundlemigrate file is built.
    The agent is deployed with an autoit, passing it registration information, based on computer information.
    The new bundlemigrate file is copied into location.
    Run Once key added to perfrom a zac refresh
    The machine is rebooted
    my bundlemigrae file looks like:-
    <?xml version="1.0"?>
    <BundleList xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://novell.com/zenworks/bundle/MigrateZEN7" >
    <Bundle ID="54686252bbf72464a7d642c6bac3319d" Version="4" Installed="TRUE" />
    </BundleList>
    Any assistance welcome.

  • Using Disk Utility for backup - target drive must be same size as source?

    Hello. I have a 250 GB data drive that I need to back up to an external drive using Disk Utility (restore) so that I can create a RAID-1 set using the 250GB drive. The files take up only 100 GB on the drive.
    Does the target external drive need to be 250 GB or just 100+ GB in size for the Disk Utility to work?
    Thanks
    David

    I you want to make a non mirrored drive into a mirrored one you can do that with diskutil. Copying it first is not needed.
    man diskutil:
    enableRAID mirror|concat device
    Convert single filesystem disk or volume into a unpaired mir-
    ror RAID set or concat set. Ownership of the affected disk is
    required.
    repairMirror raidDisk newDisk
    Repair a failed mirror. Supply the existing RAID as the raid-
    Disk parameter. Supply the new disk as the last parameter of
    the request. newDisk and raidDisk are only Device Nodes or
    Disk Identifiers. Ownership of the affected disk is required.
    The second disk in the mirror set needs to be as big or bigger as the first disk.
    Do this booted from another disk or DVD.

  • Using Disk Utility for Boot Camp to work

    I'm trying to install Windows 7, but Boot Camp gave me the old error message about having unmovable data and needed to use Disk Utility to format it as a Single Mac OS Extended (Journaled) Volume. So I backed everything up and am ready to go, but when I open Disk Utility and select my hard drive/disk, all the options under "erase" are grayed out. Any ideas?
    Thanks!

    You can't format what you are using.
    If you cloned your drive you would be able to boot from that; if you used another method and you don't have OS X installed on another hard drive, you have to use your DVD.

Maybe you are looking for

  • Lenovo G560, Windows 8 and Hiren's Boot program

    I installed Windows 8 on my Lenovo G560 and one partition of my Harddisk has some errors. I have tried repairing it with the Windows Repair Utility program but the drive errors continue to occur. Previously when my machine was running on Windows 7, I

  • Cannot upload photos, install updates

    I have tried to change settings, update firmware, and other such things and every tme I do I get an error that says cannot read or write to disk. have tried to enable the disk option with no success. please help jim na   Windows XP  

  • Link to an external RoboHlp8 html file

    Hi, I am trying to create a link to another RH8 project. I have been using Insert Hyperlink\Link to\File\Locating the html file in the other project. When I click OK it displays This action will create an external link to the help system. The link ma

  • Payment not verified

    Dear all, we recently updated our credit card. The information was also updated in the CC Control panel but CC always says expired! support can not be contacted as 800- numbers could not be called from here! support chat is not available any other id

  • Footnotes and XML: import and export.

    I've been playing around with ID CS4 for a week or two now, and can't seem to figure out a way to get footnotes into, or out of, an InDesign document using the XML import / export feature in the Structure pane. It seems you can't tag footnote text, w