Copy (or clone) database to different computer

Hi !
I've an Oracle 10g database on my computer and would like to copy (or clone) it to another computer where Oracle 10g is also installed.
I read some post and web links but nothing to indicate how to do in that (easier) case.
And if I only want to copy the base structure, mean without the data, just the table structure ... ?
Some help ?!
Thanks.

The following is an example of using the CONTENT parameter:
expdp hr/hr DIRECTORY=dpump_dir1 DUMPFILE=hr.dmp CONTENT=METADATA_ONLYThis command will execute a schema-mode export that will unload only the metadata associated with the hr schema. It defaults to a schema-mode export of the hr schema because no export mode is specified.
export tool write the database scheme in a dumpfile. Yes you have to copy this dumpfile to target database server anf use impdp utility there.
impdp hr/hr DIRECTORY=dpump_dir1 DUMPFILE=expfull.dmp CONTENT=METADATA_ONLY
go through
http://download.oracle.com/docs/cd/B19306_01/server.102/b14215/dp_export.htm#i1006376

Similar Messages

  • Standby database in same computer

    I have made standby database in different computer then in production database in similar path and it is working.
    But whenever I try to make it in same computer it gives me error. I have gone through the oracle documentaion.
    But still I can't.
    Any suggestion on Node

    I still get the problem.
    I have created a prod database with archive log mode and archival enabled
    I shut down it and copyed the
    "oradata/prod to oradata/stdby",
    "admin/prod to admin/stdby",
    "initprod.ora to initstdby.ora" and
    "pwdprod.ora to pwdstdby.ora"
    Then I have added a service name "stdby" with net8 easy config
    Now I have created a new instance stdby with "oradim -new -sid stdby"
    now In "Prod init.ora" file I have added
    log_archive_start = true
    log_archive_dest_1 = "location=e:\Oracle\oradata\stdby\archive"
    log_archive_dest_state_1 = ENABLE
    log_archive_dest_2 = 'SERVICE=standby1'
    log_archive_dest_state_2 = ENABLE
    global_names = false
    Now I have started the prod database and created a standby controlfile
    alter database create standby controlfile '\oradata\stdby\stdby.ctl'
    now In "Stdby init.ora" file I have added
    db_name = "prod"
    instance_name = stdby
    service_names = stdby
    control_files = ("e:\Oracle\oradata\stdby\stdby.ctl")
    log_archive_start = true
    log_archive_dest_1 = "location=e:\Oracle\oradata\stdby\archive"
    log_archive_dest_state_1 = ENABLE
    standby_archive_dest = 'e:\Oracle\oradata\stdby\'
    db_file_name_convert = ('\prod\','\stdby\')
    log_file_name_convert = ('\prod\','\stdby\')
    lock_name_space = 'stdby'
    Now IN standby when I do
    SQL_stdby>>startup nomount pfile='E:\Oracle\Oracle8i\DATABASE\initstdby.ora';
    SQL_stdby>>alter database mount standby database;
    SQL_stdby>>RECOVER AUTOMATIC STANDBY DATABASE;
    Up to this it works
    Now when I start prod database
    SQL_prod>>startup
    it gives me the error
    ORA-01102: cannot mount database in EXCLUSIVE mode

  • Can I restore my iPad from a sync/backup that was made on a different computer but copied to my current one?

    I regularly sync my iPad with my mac by plugging it in with the USB cable and hitting the "Sync" button in iTunes. Until recently, I had a computer with Leopard that just died. Luckily I had a backup of everything, including my iTunes folder, on an external hard drive. When I plug my iPad into my new computer (which has Lion), I can see all my apps and my preferences regarding what to sync have been saved.
    Unfortunately, one of my apps, Papers, had a lot of information on it that was lost recently and I'd like to restore that information if possible. The Papers support people told me that it should be stored in my iPad backup, so if I restore it from a backup I should get that data back. But on iTunes is says that the last backup on this computer is "unknown". I don't know if that means there is no backup, or if it just doesn't know the date because it was copied from a different computer. Regardless, it makes me nervous to hit restore when I don't know if I have a backup or not.
    My questions are:
    1) Can I access a backup of my iPad on my new computer?
    2) If so, would I just hit "Restore" and it will give me the option of restoring from the backup that was there?
    I want to make sure if I restore my iPad I won't lose anything accidentally!
    Thank you!

    I just wanted to update this chain since I was able to solve the problem I had. My iPad backups were on a time machine backup, but not on my new computer. In my most recent time machine backup I navigated to:
    ~/Library/Application Support/MobileSync/Backup and took the most recent folder from there. I copied that folder into the corresponding directory on my new machine, and then when I opened iTunes and plugged in my iPad it was there and I was able to restore it!
    Note that if you have multiple devices, you can open that folder in the Backup directory and find the info.plist file, and near the top it will say the name of the device, so I was able to tell which was my iPad backup and which was my iPhone backup.
    Problem solved!

  • Does anyone know how to copy my files from my ipod to a different computer?

    Does anyone know how to copy my files from my ipod to a different computer? I tried to do it, but all that it did was erase my files. What i want to to is use my ipod to transfer my files to another computer (which has itunes as well) PLEASE help!

    You will need to enable your iPod for disk use. Then, you should see your iPod in "My Computer" and you can open up your iPod's folder there and drag the files into it. You can store the files on the iPod, then connect it to the other computer and drag-and-drop them from the iPod into the designated directory in that computer. Make sure individual files are not larger than 4 GB.

  • Unable to copy database with different name in the same instance

    I had a huge database and wanted to try some change optimization changes.
    So wanted to make a copy of the database along with data in the same instance.
    I have tried copy database wizard several times but always see the error as in attachment.
    Can someone let me know how to troubleshoot further?
    If this is not the correct way please suggest how do i copy a database with different name in the same instance along with data.

    Hi Nandu,
    From the screenshot, the error 1813 happens when corrupt database log is attempted to attach to the SQL Server. To work around this issue, please preform the following steps, for more details, please review this
    blog.
    1. Create a new database with same name which you want to recover. Make sure that the MDF file and LDF file have same name with previous database data and log file.
    2. Stop SQL Server. Move original MDF file from old location to new location by replacing just created MDF file. Delete the LDF file of new location just created.
    3. Start SQL Server. At this point, the database is in suspect status.
    4. Make sure that system tables of Master database allows to update the values. Please note that you will be performing this in query window.
    Use Master
    go
    sp_configure 'allow updates',1
    reconfigure with override
    go
    5. Change database mode to emergency mode.
    SELECT *
    FROM sysdatabases
    WHERE name = 'DatabaseName'
    BEGIN
    UPDATE sysdatabases
    SET status = 32768
    WHERE name = ' DatabaseName '
    COMMIT TRAN
    6. Restart SQL Server. Then execute the following DBCC command in query window to create new log file.
    DBCC TRACEON (3604)
    DBCC REBUILD_LOG(databasename,'c:\yourdatabasename_log.ldf')
    GO
    7. Reset the database status using following command.
    sp_RESETSTATUS yourdatabasename
    GO
    8. Turn off the update to system tables of Master database running following script.
    USE MASTER
    GO
    sp_CONFIGURE 'allow updates',0
    RECONFIGURE WITH OVERRIDE
    GO
    9. Reset the database status to previous status.
    BEGIN
    UPDATE sysdatabases
    SET status = (value retrieved in first query of step 5)
    WHERE name = 'DatabaseName‘
    COMMIT TRAN
    GO
    Make sure that you have done all the steps in order and restarted SQL Server where it is mentioned. Also run SQL Server Management Studio as administrator.(Right click-> Run as Administrator)
    Thanks,
    Lydia Zhang

  • How do I use time machine backup to restore onto a different computer

    I am trying to troubleshoot the best way to back up my Mac.  I have been a mac user since 20009 and always used a time machine.  The two times I have needed it for backup, my computer did not read the portion the backup was.  You could tell under disk utility the space was used.  Just before the need of backup, it was backing up.  So, I am wondering if I  need to use a different method.  I lost all of my Christmas 2015 movies.  My computer did some weird thing with passwords and it needs some resetting I had to do with the support team on the phone.  The support person could not figure out how to access the back up on time capsule.  I noticed the password resetting made my computer name different by putting a 3 behind the name I assigned it. 
    One thought that has crossed my mind is can you use the time machine backup and open it up on a completely different computer? If so, I should have been able to someone access my information.  I would like to know the answer and how do it so I know in case this ever happens again and so that I can rely on this expensive back up machine I have purchased two different times on two different computers and never been able to actually use.

    Are you running Yosemite.. because it is the cause of loads of problems.
    As to opening the TM backup from another computer.. yes you can.
    Please read our TM expert Pondini.
    Q14-17 on restore here.
    http://pondini.org/TM/FAQ.html
    Particularly as you will see Q17 and it will reference the prior info you need.
    I have gone through this with several people.. and I have a post showing a manual file location and restore.
    Can't access old files on time capsule
    But not from Yosemite.. it has its own bunch of bugs.. as mentioned. Good luck with those.
    I also strongly recommend people use a secondary backup method.. there are excellent third party.. I use Carbon Copy Cloner.. it is reasonable price.. $40 based on standard rsync.. and will create either bootable clones to a local drive or sparsebundle on a time capsule etc.
    The bootable clone is the ideal way to recover files. since it is based on a simple computer reboot and then access of files that are in exactly the same place as you left them.. TM backs up in a most complicated manner.
    See how tm works here. The top couple of articles and how it is different to clones. As Pondini suggests.. using both is no bad thing.
    http://pondini.org/TM/Home.html
    This is also useful for yosemite.. it is not working as TM used to.
    Find files in Yosemite.
    https://discussions.apple.com/thread/6681850?searchText=time%20machine%20yosemit e#27139370
    While in Time Machine, press the key combination shift-command-C. The front window will show all mounted volumes. All snapshots should now be accessible. Select the one you want and navigate to the files you want to restore.
    I am not sure why your previous use of TM failed.. In the midst of all its problems it does still work ok.. as mostly people can recover stuff they do.. albeit it needs a lot more messing than is typical Apple.

  • Need help with transferring iTunes library to different computer

    My old iPod stopped working so I bought a new one.  For my older iPod I use a different computer but I want to use a different computer for my new iPod.  I have all my songs on an external hard drive and I want to use that for my other computer.  How do I keep the same library stats such as play count, last played, date added etc. on the new computer?  When I am looking through the iTunes files there are multiple library databases and I don't know which one contains all my stats data that I want to transfer over to the new computer.  Also, how do I transfer all my playlists to the other computer?  Thanks!

    Copy the entire iTunes folder from the old computer to the new computer.

  • I have an old dell computer that my itunes is currently on, can i some how switch my itunes to a different computer?

    i have an old dell computer that my itunes is currently on, can i some how switch my itunes to a different computer?
    im planning on getting rid of this computer and getting a macbook, i still want to keeo all my songs in my library, what could i do?

    These are two possible approaches that will normally work to move an existing library to a new computer.
    Method 1
    Backup the library with this User Tip.
    Deauthorize the old computer if you no longer want to access protected content on it.
    Restore the backup to your new computer using the same tool used to back it up.
    Keep your backup up-to-date in future.
    Method 2
    Connect the two computers to the same network. Share your <User's Music> folder from the old computer and copy the entire iTunes library folder into the <User's Music> folder on the new one. Again, deauthorize the old computer if no longer required.
    Both methods should give the new computer a working clone of the library that was on the old one. As far as iTunes is concerned this is still the "home" library for your devices so you shouldn't have any issues with iTunes wanting to erase and reload.
    I'd recommend method 1 since it establishes an ongoing backup for your library.
    If you have an iOS device that syncs with contact & calendar data on your computer you should migrate this information too. If that isn't possible create a dummy entry of each type in your new profile and iTunes should offer to merge the existing data from the device into the computer, otherwise the danger is that it will wipe the information from the device.
    If your media folder has been split out from the main iTunes folder you may need to do some preparatory work to make it easier to move. See make a split library portable.
    Should you be in the unfortunate position where you are no longer able to access your original library, or a backup of it, then see Recover your iTunes library from your iPod or iOS device for advice on how to set up your devices with a new library with the maximum preservation of data. If you don't have any Apple devices then see HT2519 - Downloading past purchases from the App Store, iBookstore, and iTunes Store.
    tt2

  • Copy a standby database

    Hi
    I need to periodically make a copy of a standby database to another db. For this purpose we can use a fast copy mechanism at the storage level. We've been doing similar things with normal (non-standby) databases many times and all is fine. Normally, before the copy happens we simply switch the db into the backup mode (alter database begin backup), than clone it and start the copy on a different host under a different name.
    My question is if I can copy the standby database while it is mounted and redolog application is stopped? Nothing should be writing to data files in such case. Will this image be consistent? I cannot execute the 'alter database begin backup' command because the database is a standby database and cannot be opened. Shutting down the source database would require action from other people what I would like to avoid.
    Kind Regards,
    Tim

    Thank you for your replies.
    rajeysh wrote:
    why you are using user managed backup ?
    use rman it is faster than traditional user managed backup copy.As I wrote, we use a copy mechanism at the storage array level. It's a way faster than RMAN. We only need to make sure the copy is recoverable.
    rajeysh wrote:
    also you cannot take backup while the database is in mount stage, the image will be inconsistent.Why do you think I cannot? If no recovery actions are running in the mount state, no data files are being written. If it's inconsistent in the mount state (awaits recovery because instance was terminated), than it is recoverable. No problem, I can later use redo data to make the copy consistent.
    Iordan Iotzov wrote:
    A sure way to have you standby DB in a consistent state is to open it read-only.
    Once the copy is done you can return it back to applying redo.
    Iordan Iotzov
    http://iiotzov.wordpress.com/
    Edited by: Iordan Iotzov on Jul 12, 2011 8:00 AMIt's a great idea. In the read-only mode no changes occur to data files and nobody will accidentally start managed recovery (without restarting the instance) while I am copying the database.
    Oracle® Database Backup and Recovery Advanced User's Guide 10g Release 2 (10.2):
    Making User-Managed Backups of Read-Only Tablespaces
    When backing up an online read-only tablespace, you can simply back up the online datafiles. You do not have to place the tablespace in backup mode because the database is not permitting changes to the datafiles.

  • Steps to clone database in other server with restore daily

    Hi,
    I think i know what is the steps but need a guru that give me the ok.
    I have been asked to perform a clone database (11.2.0.3 with ASM) in another server. The original database (call PROD) has full backup everyday that it automatically (with crontab and a script i guess) restore the second database. The problem i see its that the original database is a RAC (2 nodes) but the second database is standalone (call TEST)
    I think the steps are:
    1) create a standalone database in second server with same number of diskgroups and same directories
    2) copy full backup to TEST server.
    3) duplicate with rman:
    connect auxiliary sys/password@TEST
    connect target /
    startup auxiliary nomount;
    run {
    allocate auxiliary channel ch1 type disk;
    duplicate target database to 'TEST' nofilenamecheck;
    release channel ch1;
    4) copy PFILE from PROD and modify (like standalone database) at TEST
    5) startup nomount; --test database
    6) restore controlfile from '< backup piece name of controlfile auto backup copied in step 2>'; --at test database
    7) alter database mount; --test database
    8) recover, restore from full backup and open database-->
    run {
    allocate channel d1 device type disk format ' <path of the copied backup in step 2 >';
    set until sequence < sequence> thread < thread# >;
    restore database;
    recover database;
    SQL> alter database open resetlogs;
    9) like its a backup that has 2 undo tablespaces, should i drop 1?:
    SQL> drop tablespace UNDOTBS2 including contents and datafiles;
    All this steps at first time, are they right?, to do it automatically in the script i should use 2) 5) 6) 7) 8)?
    -- like the databases names are different, should i have any problem when restore de controlfile? if yes, how to avoid it?
    Thanks in advance and sorry for the inconveniences
    Edited by: Me_101 on 30-jul-2012 5:46

    Me_101 wrote:
    Hi,
    I think i know what is the steps but need a guru that give me the ok.
    I have been asked to perform a clone database (11.2.0.3 with ASM) in another server. The original database (call PROD) has full backup everyday that it automatically (with crontab and a script i guess)Why guess? Can't you look at the crontab schedule and see for yourself?
    restore the second database. The problem i see its that the original database is a RAC (2 nodes) but the second database is standalone (call TEST)
    That should not be an issue. Even with RAC there is still only a single database to duplicate.
    I think the steps are:
    1) create a standalone database in second server with same number of diskgroups and same directories
    2) copy full backup to TEST server.
    3) duplicate with rman:
    connect auxiliary sys/password@TEST
    connect target /
    startup auxiliary nomount;
    run {
    allocate auxiliary channel ch1 type disk;
    duplicate target database to 'TEST' nofilenamecheck;
    release channel ch1;
    4) copy PFILE from PROD and modify (like standalone database) at TEST
    5) startup nomount; --test database
    6) restore controlfile from '< backup piece name of controlfile auto backup copied in step 2>'; --at test database
    7) alter database mount; --test database
    8) recover, restore from full backup and open database-->
    run {
    allocate channel d1 device type disk format ' <path of the copied backup in step 2 >';
    set until sequence < sequence> thread < thread# >;
    restore database;
    recover database;
    SQL> alter database open resetlogs;
    9) like its a backup that has 2 undo tablespaces, should i drop 1?:
    SQL> drop tablespace UNDOTBS2 including contents and datafiles;
    All this steps at first time, are they right?, to do it automatically in the script i should use 2) 5) 6) 7) 8)?
    -- like the databases names are different, should i have any problem when restore de controlfile? if yes, how to avoid it?
    Thanks in advance and sorry for the inconveniences
    Edited by: Me_101 on 30-jul-2012 5:46Take a look at the DUPLICATE DATABASE command in rman. Key is to connect to the production db as target, duplicate databse as auxiliary
    connect catalog rman/cat@rmcat
    connect target sys/pswd@proddb
    connect auxiliary /
    run {                        
    duplicate target database to NEWDBSID;
    }                                        where NEWDBSID is the name of the new database
    Put together what you think is the correct procedure and give it a shot. If you have specific problems, bring them to the forum.

  • Norton AntiVirus (NAV) vs Copy Carbon Cloner (CCC)

    For several months, I clone my partition of +Mac OS X+ with CCC.
    I use NAV to protect my computer from viruses.
    Question
    Having to erase the contents of my partition +Mac OS X+ and having copied its clone to this partition, NAV will have problem of functioning (or not functional) if I do not disable 'Auto-Protect' of NAV before create the clone file?
    Other problems known? (if exist)
    Thank

    You should get into the habit of occasionally looking at the Announcements and 'Stickies' in the bombich CCC forums. Sometimes the title alone is useful, e.g. Disable ANTI-VIRAL scanning before cloning
    Other problems known? (if exist)
    Many, very many! As there are are no viruses that can infect your Mac, why you want to be running any AV software would be the subject of a different thread. If you are unaware of how destructive anything 'Norton' often is you would do well to do some searching of these forums. Be prepared for horror stories!   
    Andreas

  • Install OSX from different computer

    Here's the situation. Hard drive died, and data was unretrievable. Hard drive was replaced and 10.4.11 was installed. Before the failure I had 10.5.5 that I had bought as a family pack, which I also have installed on a different computer. Unfortunately I can't find the disc. Is there a way to make a copy of the OS or a way to install it from the other computer via firewaire, or am I going to have to buy a new disc?

    When you say not work properly, do you mean unusable
    Yes, I mean unusable; the system may not even boot, or it may boot but be erratic in operation
    if it doesn't work, is it possible to undo?
    Only with a reinstall of the OS.
    Between PowerPC systems, you can try cloning the drive on the "good" system if you absolutely can't get your hands on a retail Mac OS X installer. Boot the system with the new drive to Firewire target disk mode and use a cloning utility such as Carbon Copy Cloner to clone the OS from the "good" system to the other one. If you're lucky, it might work without problems. But it's by no means guaranteed; it could lead to erratic results and/or some functions, system prefs, etc may not work or may be missing. Note as well that you'll need to remove from the cloned system any applications that were installed on the "good" system for which you don't have a license to run on two machines.
    It will really be better if you can get a new retail installation disk for Mac OS X. That's going to be the most reliable method of installing on the new drive.
    Good luck.

  • RMAN backups valid for clone database.

    Hi,
    If we clone the database using rman that clone database will be having different database id, incurnation number and new resetlogfiles.
    so here we can't use source database backup files. if we want to use that source database backup files to clone database what is the procedure to clone the database.
    please let me know.
    thank you very much...!

    899329 wrote:
    Hi,
    If we clone the database using rman that clone database will be having different database id, incurnation number and new resetlogfiles.
    so here we can't use source database backup files. if we want to use that source database backup files to clone database what is the procedure to clone the database.
    please let me know.
    thank you very much...!You can clone/refresh database as
    1) RMAN duplicate
    2) RMAN restore from backups(restore control + database)
    using source backup files:-
    3) Hot backup clone ( begin backup, copy files, end backup, create controlfile using trace)
    4) cold clone (shutdown database, copy datafiles, create controlfile)
    5) whole database export & import

  • Retrieving a Database from a Computer Without Administrative Rights

    I am not sure if I have the correct forum for this question, but ... I have a computer with only one login account with administrative rights. The login is kludged now that the registry value for the administrative user is messed up. When I try to log
    in, I get a message saying something to the effect of "The user profile service service failed the logon".  I looked it up on msdn and saw that I can fix it by changing the registry, but of course, I cannot do that because the bad user
    account is the administrative account.
    The only thing that I need to retrieve from that hard drive is a sql server database.  Is there any way for me to do that, perhaps by putting the drive in a USB "sled" device and attaching it to a different computer as an external hard drive? 
    Will I be able to access the data folder where the database resides or will I get a message saying that I do not have permission?
    Rob E.

    Sounds like I have a chance.  SQL Server is installed on my C drive. I am concerned that when I try to open the data folder on the usb drive I will get a message saying I do not have permission to open the folder.  Do you think that would
    happen?
    Rob E.
    no, that should not happen..because you are effectively making the drive as an "external drive that has some files "to the new computer..
    just copy them over and attach to the new sql instance...
    Hope it Helps!!

  • System Copy(homogenous) Error -Database load phase

    Hello All,
    I am doing System Copy thorugh Export - Import meothed of SAP R/3 4.7 110 on Windows2003-SQL 2000 SP3. Making Copy of Production server with different SID.After taking Export Successfully from Production Server I am Importing it to Target System
    but i am facing error at Database Load Phase getting the same error on almost every process like SAPSSEXE,SAPCLUST,SAPAPPL0,SAPAPPL1 etc. the error is below :
    E:\usr\sap\PRT\SYS\exe\run/R3load.exe: START OF LOG: 20090808202046
    E:\usr\sap\PRT\SYS\exe\run/R3load.exe: sccsid @(#) $Id: //bas/620/src/R3ld/R3load/R3ldmain.c#6 $ SAP
    E:\usr\sap\PRT\SYS\exe\run/R3load.exe: version R6.20/V1.2
    E:\usr\sap\PRT\SYS\exe\run/R3load.exe -ctf I C:\EXPORT/DATA/SAPAPPL1.STR C:\EXPORT/DB/DDLMSS.TPL C:\SAPinst MSSQL SAPINST3/SAPAPPL1.TSK MSS -l C:\SAPinst MSSQL SAPINST3/SAPAPPL1.log
    E:\usr\sap\PRT\SYS\exe\run/R3load.exe: job completed
    E:\usr\sap\PRT\SYS\exe\run/R3load.exe: END OF LOG: 20090808202047
    E:\usr\sap\PRT\SYS\exe\run/R3load.exe: START OF LOG: 20090808202053
    E:\usr\sap\PRT\SYS\exe\run/R3load.exe: sccsid @(#) $Id: //bas/620/src/R3ld/R3load/R3ldmain.c#6 $ SAP
    E:\usr\sap\PRT\SYS\exe\run/R3load.exe: version R6.20/V1.2
    E:\usr\sap\PRT\SYS\exe\run/R3load.exe -dbcodepage 1100 -i C:\SAPinst MSSQL SAPINST3/SAPAPPL1.cmd -l C:\SAPinst MSSQL SAPINST3/SAPAPPL1.log -loadprocedure fast
    DbSl Trace: SQLOLEDB Provider Release:08.10.3959
    DbSl Trace: Shared cache sizes: header 52 bytes, 10000 names (13360000 bytes), 1000 dynamic statements (5436000 bytes), total 18796052 bytes
    DbSl Trace: Initializing private procedure name cache.
    DbSl Trace: procedure cache created/attached
    DbSl Trace: Thank You for using the SLOLEDB-interface
    DbSl Trace: Connected to db server : [prdt], dbname: PRT, dbuser: prt
    DbSl Trace: Using dynamic link library 'E:\usr\sap\PRT\SYS\exe\run\dbmssslib.dll'
    DbSl Trace: dbmssslib.dll patch info
    DbSl Trace:   patchlevel   0
    DbSl Trace:   patchno      524
    DbSl Trace:   patchcomment DBDYNPSOURCE/DBDYNPSOURCE~, SHADOW_IMPORT_ALL (578789)
    DbSl Trace: The IRow interface is supported by this OLEDB provider
    DbSl Trace: ParamStmtExec: line 23573. hr: 0x80040e37 Invalid object name 'SVERS'.
    DbSl Trace: HandleOledbError [ParamStmtExec,line 23573]: Error/Message: (err 208, sev 16), Invalid object name 'SVERS'.
    DbSl Trace: ParamStmtExec failed.  HR 80040e37 DBSL retcode 103. stmt: [SELECT VERSION AS c FROM SVERS ]
    DbSl Trace: Conn_i:1 selection:1 singleton:1 flag_fupd:0 use_cursor:0 chksum:12157
    DbSl Trace: DbSlRead - Error 103 (dbcode 208) on open
    DbSl Trace: DbSlRead - <##Y2PRDTprt00000035720000000001202054>
    DbSl Trace: DbSlRead - Error 103 (dbcode 208) on fetch
    DbSl Trace: DbSlRead - <##Y2PRDTprt00000035720000000001202054>
    Sat Aug 08 20:20:54 2009
    **LOG BZA=> table SVERS      does not exist on database [dblink#1 @ 1292] [dblink  1292 ]
    (DB) INFO: connected to DB
    (GSI) INFO: dbname   = "PRTprdt                                                                                "
    (GSI) INFO: vname    = "MSSQL                           "
    (GSI) INFO: hostname = "PRDT                                                            "
    (GSI) INFO: sysname  = "Windows NT"
    (GSI) INFO: nodename = "PRDT"
    (GSI) INFO: release  = "5.2"
    (GSI) INFO: version  = "3790 Service Pack 2"
    (GSI) INFO: machine  = "2x Intel 80686 (Mod 15 Step 2)"
    DbSl Trace: ParamStmtExec: line 23573. hr: 0x80040e37 Invalid object name 'SVERS'.
    DbSl Trace: HandleOledbError [ParamStmtExec,line 23573]: Error/Message: (err 208, sev 16), Invalid object name 'SVERS'.
    DbSl Trace: ParamStmtExec failed.  HR 80040e37 DBSL retcode 103. stmt: [SELECT VERSION AS c FROM SVERS ]
    DbSl Trace: Conn_i:1 selection:1 singleton:1 flag_fupd:0 use_cursor:0 chksum:12157
    DbSl Trace: DbSlRead - Error 103 (dbcode 208) on open
    DbSl Trace: DbSlRead - <##Y2PRDTprt00000035720000000002202054>
    DbSl Trace: DbSlRead - Error 103 (dbcode 208) on fetch
    DbSl Trace: DbSlRead - <##Y2PRDTprt00000035720000000002202054>
    Interface access functions from dynamic library dbmssslib.dll loaded.(IMP) INFO: import of /1DF/__GI000 completed (0 rows)
    (IMP) INFO: import of /BDL/BADHOST completed (0 rows)
    (IMP) INFO: import of /BDL/CUSTSES completed (0 rows)
    (IMP) INFO: import of /BDL/INTSESS completed (0 rows)
    (IMP) INFO: import of /BDL/MSGLOG completed (0 rows)
    (IMP) INFO: import of /BDL/NOHOSTS completed (0 rows)
    (IMP) INFO: import of /BDL/SESDEST completed (0 rows)
    (IMP) INFO: import of /BDL/SESS completed (0 rows)
    (IMP) INFO: import of /BDL/STATUS completed (0 rows)
    (IMP) INFO: import of /BDL/TESTSES completed (0 rows)
    (IMP) INFO: import of /BDL/TRHOSTS completed (0 rows)
    (IMP) INFO: import of /SAPDMC/LSOFIL completed (56 rows)
    (IMP) INFO: import of /SAPDMC/LSOFIW completed (0 rows)
    (IMP) INFO: import of /SAPDMC/LSOPRT completed (0 rows)
    (IMP) INFO: import of /SAPSLL/BWHSTR3 completed (0 rows)
    (IMP) INFO: import of /SAPSLL/CUWLAR3 completed (0 rows)
    (IMP) INFO: import of /SAPSLL/KMATWLR3 completed (0 rows)
    (IMP) INFO: import of /SAPSLL/OBJIDX completed (0 rows)
    (IMP) INFO: import of /SAPSLL/OBJSSF completed (0 rows)
    (IMP) INFO: import of /SAPSLL/OBJSYNC completed (0 rows)
    (IMP) INFO: import of /SAPSMOSS/UPDATE completed (0 rows)
    (IMP) INFO: import of /SAPTRX/AOTREF completed (0 rows)
    (IMP) INFO: import of /SAPTRX/APPTALOG completed (0 rows)
    (IMP) INFO: import of /SAPTRX/ASITEMID completed (0 rows)
    (IMP) INFO: import of /SAPTRX/MTOBJLOG completed (0 rows)
    (IMP) INFO: import of /SCMB/DF_DEL_TAB completed (0 rows)
    (IMP) INFO: import of /SCMB/DF_DNET completed (0 rows)
    (IMP) INFO: import of /SCMB/DF_DOC completed (0 rows)
    (IMP) INFO: InitFastLoad failed with <3: (null)>(IMP) INFO: DBSL will be used(IMP) INFO: import of /SCMB/DF_DOC_VAL
    completed (0 rows)
    (IMP) INFO: import of /SCMB/DF_DQTY completed (0 rows)
    (IMP) INFO: import of /SCMB/DF_DVALUE completed (0 rows)
    (IMP) INFO: InitFastLoad failed with <3: (null)>(IMP) INFO: DBSL will be used(IMP) INFO: import of /SCMB/TREEVIEW2 completed
    (0 rows)
    (IMP) INFO: import of /SDF/INDX completed (0 rows)
    (IMP) INFO: import of /SDF/SDBAH completed (0 rows)
    (IMP) INFO: import of /SOMO/JOSCHEDL completed (0 rows)
    (IMP) INFO: import of /SOMO/JOSCHEDLT completed (0 rows)
    (IMP) INFO: import of /SSF/DHEAD completed (1 rows)
    (IMP) INFO: InitFastLoad failed with <3: (null)>(IMP) INFO: DBSL will be used(IMP) INFO: import of /SSF/DTAB completed (18
    rows)
    (IMP) INFO: InitFastLoad failed with <3: (null)>(IMP) INFO: DBSL will be used(IMP) INFO: import of /SSF/PTAB completed (7520 rows)
    (IMP) INFO: import of A055 completed (0 rows)
    (IMP) INFO: import of A056 completed (0 rows)
    (IMP) INFO: import of A064 completed (0 rows)
    (IMP) INFO: import of A065 completed (0 rows)
    (IMP) INFO: import of ABDBG_BPS completed (0 rows)
    (IMP) INFO: import of ABDBG_INFO completed (0 rows)
    (IMP) INFO: import of ACCRPOST completed (0 rows)
    (IMP) INFO: import of ACCTCR completed (7346418 rows)
    (IMP) INFO: import of ACCTHD completed (624272 rows)
    (IMP) INFO: import of ACCTIT completed (3673209 rows)
    (IMP) INFO: import of ACEPSOH completed (0 rows)
    (IMP) INFO: import of ACEPSOI completed (0 rows)
    (IMP) INFO: import of ACEPSOIT completed (0 rows)
    (IMP) INFO: import of ACL_ACE completed (0 rows)
    (IMP) INFO: import of ACL_ACTGR completed (0 rows)
    (IMP) INFO: import of ACL_ACTGRE completed (0 rows)
    (IMP) INFO: import of ACL_ACTGRT completed (0 rows)
    (IMP) INFO: import of ACL_ACTVT completed (0 rows)
    (IMP) INFO: import of ACL_ACTVTT completed (0 rows)
    (IMP) INFO: import of ACL_CACHE completed (0 rows)
    (IMP) INFO: import of ACL_MAIN completed (0 rows)
    (IMP) INFO: import of ACL_OBJTP completed (0 rows)
    (IMP) INFO: import of ACL_OBJTPA completed (0 rows)
    (IMP) INFO: import of ACL_OBJTPG completed (0 rows)
    (IMP) INFO: import of ACL_OBJTPT completed (0 rows)
    (IMP) INFO: import of ACL_OWNER completed (0 rows)
    (IMP) INFO: import of ACRELATION completed (76954 rows)
    (IMP) INFO: import of ACTFLI completed (0 rows)
    (IMP) INFO: import of AD01DLI completed (0 rows)
    (IMP) INFO: import of AD01DLIEF completed (0 rows)
    (IMP) INFO: import of AD01DLISF completed (0 rows)
    (IMP) INFO: import of AD01FILTVAR completed (0 rows)
    (IMP) INFO: import of AD01STRUCTVAR completed (0 rows)
    (IMP) INFO: import of AD01VARMASTER completed (0 rows)
    (IMP) INFO: import of ADATABSIZE completed (0 rows)
    (IMP) INFO: import of ADJT_TRANSACTION completed (0 rows)
    (IMP) INFO: import of ADMI_BUFFC completed (0 rows)
    (IMP) INFO: import of ADMI_BUFFI completed (0 rows)
    (IMP) INFO: import of ADMI_FILES completed (0 rows)
    (IMP) INFO: import of ADMI_JOBS completed (0 rows)
    (IMP) INFO: import of ADMI_RJOBS completed (0 rows)
    (IMP) INFO: import of ADMI_RUN completed (0 rows)
    (IMP) INFO: import of ADMI_SKIP completed (0 rows)
    (IMP) INFO: import of ADMI_STATS completed (0 rows)
    (IMP) INFO: import of ADMI_VARIA completed (0 rows)
    (IMP) INFO: import of ADMI_XDOCS completed (0 rows)
    (IMP) INFO: import of ADMI_XRUN completed (0 rows)
    (IMP) INFO: import of AFAB completed (0 rows)
    (IMP) INFO: import of AFBP completed (0 rows)
    (IMP) INFO: import of AFFH completed (0 rows)
    (IMP) INFO: import of AFFL completed (366118 rows)
    (IMP) INFO: import of AFFT completed (0 rows)
    (IMP) INFO: import of AFFV completed (0 rows)
    (IMP) INFO: import of AFFW completed (7 rows)
    (IMP) INFO: import of AFFWPRO completed (0 rows)
    (IMP) INFO: import of AFIH completed (113 rows)
    The above error are also present in the other Process log files.
    But when i saw the installation logs of the Source system the same errors are also there(but it was still Sucessfull Standard installation).
    there is one difference as well I am SQL SP3 (8.00.780) but existing Production server is SQL SP3(8.00.929).
    My installation is stoppoing here with error While executing Script.
    I've done Homogenous copy on WiN-ORACLE many times but on WIN-SQL i am doing very first time.
    While installation database phase it asked me for EXPORT CD twice first time for standard(which usually we got with SAP Software) and Second time for Migration EXPORT. that is different from ECC5.0 i think.
    Any suggestions?
    Regards,
    Vinay
    Edited by: Vinay Paul on Aug 8, 2009 11:01 PM

    Dear Markus,
    Thanks for the Reply.
    As you Said i am upgrading my kernal (making it same as current kernel using bysource system that is 175).
    Hope this will solve my problem ....Do i have to restart my complete installation now?
    My recent last error was :
    SAPSSRC.LOG
    E:\usr\sap\PRT\SYS\exe\run/R3load.exe: START OF LOG: 20090808202048
    E:\usr\sap\PRT\SYS\exe\run/R3load.exe: sccsid @(#) $Id: //bas/620/src/R3ld/R3load/R3ldmain.c#6 $ SAP
    E:\usr\sap\PRT\SYS\exe\run/R3load.exe: version R6.20/V1.2
    E:\usr\sap\PRT\SYS\exe\run/R3load.exe -ctf I C:\EXPORT/DATA/SAPSSRC.STR C:\EXPORT/DB/DDLMSS.TPL C:\SAPinst MSSQL SAPINST3/SAPSSRC.TSK MSS -l C:\SAPinst MSSQL SAPINST3/SAPSSRC.log
    E:\usr\sap\PRT\SYS\exe\run/R3load.exe: job completed
    E:\usr\sap\PRT\SYS\exe\run/R3load.exe: END OF LOG: 20090808202048
    E:\usr\sap\PRT\SYS\exe\run/R3load.exe: START OF LOG: 20090808221527
    E:\usr\sap\PRT\SYS\exe\run/R3load.exe: sccsid @(#) $Id: //bas/620/src/R3ld/R3load/R3ldmain.c#6 $ SAP
    E:\usr\sap\PRT\SYS\exe\run/R3load.exe: version R6.20/V1.2
    E:\usr\sap\PRT\SYS\exe\run/R3load.exe -dbcodepage 1100 -i C:\SAPinst MSSQL SAPINST3/SAPSSRC.cmd -l C:\SAPinst MSSQL SAPINST3/SAPSSRC.log -loadprocedure fast
    DbSl Trace: SQLOLEDB Provider Release:08.10.3959
    DbSl Trace: Shared cache sizes: header 52 bytes, 10000 names (13360000 bytes), 1000 dynamic statements (5436000 bytes), total 18796052 bytes
    DbSl Trace: Initializing private procedure name cache.
    DbSl Trace: procedure cache created/attached
    DbSl Trace: Thank You for using the SLOLEDB-interface
    DbSl Trace: Connected to db server : [prdt], dbname: PRT, dbuser: prt
    DbSl Trace: Using dynamic link library 'E:\usr\sap\PRT\SYS\exe\run\dbmssslib.dll'
    DbSl Trace: dbmssslib.dll patch info
    DbSl Trace:   patchlevel   0
    DbSl Trace:   patchno      524
    DbSl Trace:   patchcomment DBDYNPSOURCE/DBDYNPSOURCE~, SHADOW_IMPORT_ALL (578789)
    DbSl Trace: The IRow interface is supported by this OLEDB provider
    (DB) INFO: connected to DB
    (GSI) INFO: dbname   = "PRTprdt                                                                                "
    (GSI) INFO: vname    = "MSSQL                           "
    (GSI) INFO: hostname = "PRDT                                                            "
    (GSI) INFO: sysname  = "Windows NT"
    (GSI) INFO: nodename = "PRDT"
    (GSI) INFO: release  = "5.2"
    (GSI) INFO: version  = "3790 Service Pack 2"
    (GSI) INFO: machine  = "2x Intel 80686 (Mod 15 Step 2)"
    Interface access functions from dynamic library dbmssslib.dll loaded.(IMP) INFO: import of ABTREE completed (39 rows)
    (IMP) INFO: import of AKB_CHKCONF completed (0 rows)
    (IMP) INFO: import of AKB_INDX completed (0 rows)
    (IMP) INFO: import of APTREE completed (1531 rows)
    (IMP) INFO: import of APTREET completed (75 rows)
    (IMP) INFO: import of CAPTREE completed (0 rows)
    (IMP) INFO: import of CAPTREET completed (0 rows)
    (IMP) INFO: import of CCCEXIT completed (44 rows)
    (IMP) INFO: import of CCCINFO completed (15 rows)
    (IMP) INFO: import of CLMCUS completed (0 rows)
    (IMP) INFO: import of CONTCOMP completed (2 rows)
    (IMP) INFO: import of CONTCOMPT completed (4 rows)
    (IMP) INFO: import of CONTCOMPX completed (2 rows)
    (IMP) INFO: import of CONTCOMPXT completed (3 rows)
    (IMP) INFO: import of CROSS completed (1399548 rows)
    (IMP) INFO: import of CUSTDIR completed (0 rows)
    (IMP) INFO: import of CWBMODILOG completed (0 rows)
    (IMP) INFO: import of DBDATA completed (0 rows)
    (IMP) INFO: import of DIRTREE completed (21 rows)
    (IMP) INFO: import of DVSEQDIR completed (0 rows)
    (IMP) INFO: import of DWTREE completed (522 rows)
    (IMP) INFO: import of EUDIAL completed (0 rows)
    (IMP) INFO: import of EUF4VALUES completed (34 rows)
    (IMP) INFO: import of EUFUNC completed (76 rows)
    (IMP) INFO: import of EUIMPORT completed (47 rows)
    (IMP) INFO: import of EUINFO completed (2772 rows)
    (IMP) INFO: import of EUINFOLI completed (0 rows)
    (IMP) INFO: import of FUSEQDIR completed (0 rows)
    (IMP) INFO: import of GUIDIR completed (0 rows)
    (IMP) INFO: import of GUIDIRT completed (3 rows)
    (IMP) INFO: import of GUINODE completed (0 rows)
    (IMP) INFO: import of GUINODT completed (0 rows)
    (IMP) INFO: import of ICON completed (982 rows)
    (IMP) INFO: import of ICONP completed (149 rows)
    (IMP) INFO: import of ICONT completed (3361 rows)
    (IMP) INFO: import of ICO_P completed (0 rows)
    (IMP) INFO: import of LDBS completed (0 rows)
    (IMP) INFO: import of MAPPARAREF completed (0 rows)
    (IMP) INFO: import of MODACT completed (0 rows)
    (IMP) INFO: import of MODATTR completed (0 rows)
    (IMP) INFO: import of MODIDIR completed (0 rows)
    (IMP) INFO: import of MODSAPA completed (2049 rows)
    (IMP) INFO: import of MODSAPT completed (3991 rows)
    (IMP) INFO: import of MODTEXT completed (0 rows)
    (IMP) INFO: import of O2APPL completed (164 rows)
    (IMP) INFO: import of O2APPLT completed (305 rows)
    (IMP) INFO: import of O2PAGCON completed (4120 rows)
    (IMP) INFO: import of O2THEMEREL completed (0 rows)
    (IMP) INFO: import of O2THEMES completed (1 rows)
    (IMP) INFO: import of O2THEMEST completed (0 rows)
    (IMP) INFO: import of O2XMLDESC completed (89 rows)
    (IMP) INFO: import of O2XSLTDESC completed (163 rows)
    (IMP) INFO: import of O2XSLTOTR completed (0 rows)
    (IMP) INFO: import of O2XSLTTEXT completed (385 rows)
    (IMP) INFO: import of OBJ_DIFF completed (0 rows)
    (IMP) INFO: import of OXT_PICTURE completed (146 rows)
    (IMP) INFO: import of PACKCHECK_EXCEPT completed (131 rows)
    (IMP) INFO: import of PRICAT_FIELD completed (172 rows)
    (IMP) INFO: import of PRICAT_FIELDT completed (343 rows)
    (IMP) INFO: import of PROP_ELTYP completed (27 rows)
    (IMP) INFO: import of RLB_DB_LB completed (2 rows)
    (IMP) INFO: import of RLB_DB_LBT completed (4 rows)
    (IMP) INFO: import of RLB_DB_PR completed (31 rows)
    (IMP) INFO: import of RLB_DB_PRT completed (62 rows)
    (IMP) INFO: import of RLIB_CONT completed (0 rows)
    (IMP) INFO: import of RLIB_OBJS completed (1160 rows)
    (IMP) INFO: import of RLIB_TREES completed (5 rows)
    (IMP) INFO: import of RSEUINC completed (588382 rows)
    (IMP) INFO: import of RSEUMOD completed (49 rows)
    (IMP) INFO: import of RSEUTAB completed (0 rows)
    (IMP) INFO: import of RSMPCHECK completed (31 rows)
    (IMP) INFO: import of RSMPCHECKT completed (62 rows)
    (IMP) INFO: import of RSMPTEXTSI completed (0 rows)
    (IMP) INFO: import of RSNORMTXT completed (246 rows)
    (IMP) INFO: import of SDBUSRSET completed (0 rows)
    (IMP) INFO: import of SMODILOG completed (125 rows)
    (IMP) INFO: import of SMODILOGI completed (0 rows)
    (IMP) INFO: import of SMODIPROJ completed (0 rows)
    (IMP) INFO: import of SMODISRC completed (492 rows)
    (IMP) INFO: import of SMODISRCI completed (0 rows)
    (IMP) INFO: import of SMODITRAN completed (0 rows)
    (IMP) INFO: import of SMODIUSER completed (0 rows)
    (IMP) INFO: InitFastLoad failed with <3: (null)>(IMP) INFO: DBSL will be used(IMP) ERROR: DbSlExeModify/DbSlLobPutPiece failed
      rc = 22, table "SPROXDAT"
    (IMP) INFO: InitFastLoad failed with <3: (null)>(IMP) INFO: DBSL will be usedDbSl Trace: invalid sign in BCD number: 1
    DbSl Trace: Error converting decimal:  000000000200303.0 HEX: 0000000002003031 input variable# 12, proc: ## No proc
    DbSl Trace: invalid sign in BCD number: 1
    DbSl Trace: Error converting decimal:  000000000200303.0 HEX: 0000000002003031 input variable# 14, proc: ## No proc
    DbSl Trace: internal error in decimal conversion.
    (IMP) ERROR: DbSlExeModify/DbSlLobPutPiece failed
      rc = 8, table "SPROXHDR"
    (IMP) INFO: import of SPROXINDX completed (0 rows)
    (IMP) INFO: import of SPROXKEY completed (0 rows)
    (IMP) INFO: import of SPROXREG completed (9 rows)
    (IMP) INFO: import of SPROXSET completed (0 rows)
    (IMP) INFO: InitFastLoad failed with <3: (null)>(IMP) INFO: DBSL will be used(IMP) INFO: import of SPROXTST completed (0 rows)
    (IMP) INFO: import of SRESETLOG completed (0 rows)
    (IMP) INFO: import of SRESETLOG2 completed (0 rows)
    (IMP) INFO: import of SXC_ATTR completed (1045 rows)
    (IMP) INFO: import of SXC_ATTRT completed (1855 rows)
    (IMP) INFO: import of SXC_CLASS completed (1045 rows)
    (IMP) INFO: import of SXC_COCO completed (0 rows)
    (IMP) INFO: import of SXC_EXIT completed (1449 rows)
    (IMP) INFO: import of SXC_FCODE completed (11 rows)
    (IMP) INFO: import of SXC_FCODET completed (23 rows)
    (IMP) INFO: import of SXC_IMPSWH completed (2551 rows)
    (IMP) INFO: import of SXC_SCRN completed (47 rows)
    (IMP) INFO: import of SXC_TABLE completed (0 rows)
    (IMP) INFO: import of SXC_TABLET completed (0 rows)
    (IMP) INFO: import of SXS_ATTR completed (2093 rows)
    (IMP) INFO: import of SXS_ATTRT completed (4020 rows)
    (IMP) INFO: import of SXS_COCO completed (0 rows)
    (IMP) INFO: import of SXS_FCODE completed (64 rows)
    (IMP) INFO: import of SXS_FCODET completed (128 rows)
    (IMP) INFO: import of SXS_INTER completed (2093 rows)
    (IMP) INFO: import of SXS_MLCO completed (616 rows)
    (IMP) INFO: import of SXS_SCRN completed (80 rows)
    (IMP) INFO: import of SXS_SCRNT completed (141 rows)
    (IMP) INFO: import of SXS_TABLE completed (1 rows)
    (IMP) INFO: import of SXS_TABLET completed (2 rows)
    (IMP) INFO: import of SYS_COMP completed (0 rows)
    (IMP) INFO: import of TBPROGREF completed (251 rows)
    (IMP) INFO: import of TBVIEWER completed (0 rows)
    (IMP) INFO: import of TCG01 completed (9 rows)
    (IMP) INFO: import of TCP11 completed (1 rows)
    (IMP) INFO: import of TCP13 completed (0 rows)
    (IMP) INFO: import of TCP17 completed (0 rows)
    (IMP) INFO: import of TGLIF completed (534 rows)
    (IMP) INFO: import of THELPI completed (0 rows)
    (IMP) INFO: import of TMCRT completed (303 rows)
    (IMP) INFO: import of TMEMO completed (0 rows)
    (IMP) INFO: import of TRANSFDESC completed (0 rows)
    (IMP) INFO: import of TRANSFTEXT completed (0 rows)
    (IMP) INFO: import of TRDIRE completed (32350 rows)
    (IMP) INFO: import of TREELOG completed (15990 rows)
    (IMP) INFO: import of W3HTMLT completed (1138 rows)
    (IMP) INFO: import of W3HTRCT completed (162 rows)
    (IMP) INFO: import of W3JSCRT completed (0 rows)
    (IMP) INFO: import of W3MIMET completed (361 rows)
    (IMP) INFO: import of W3OBJLOINF completed (0 rows)
    (IMP) INFO: import of W3PUBDIR completed (0 rows)
    (IMP) INFO: import of W3SERINTP completed (44 rows)
    (IMP) INFO: import of W3SERINTPT completed (63 rows)
    (IMP) INFO: import of W3SERVICET completed (156 rows)
    (IMP) INFO: import of WBCROSSGT completed (126383 rows)
    (IMP) INFO: import of WBCROSSI completed (5654 rows)
    (DB) INFO: disconnected from DB
    E:\usr\sap\PRT\SYS\exe\run/R3load.exe: job finished with 2 error(s)
    E:\usr\sap\PRT\SYS\exe\run/R3load.exe: END OF LOG: 20090808221726
    Regards,
    Vinay

Maybe you are looking for

  • Messages on Mac

    sooo i downloaded mountain lion and the messages isnt with imessage... i open the application and it says yahoo at the bottom corner, i need to change it to imessage, SOMEONE HELP PLEASE.

  • How to fill in a text box on a pfd form downloaded from the internet

    I am desperate to know how to fill in text boxes on a pdf form that has been downloaded from the internet

  • No Media Transfer Protocol ("MTP") on Clip Jam ? Coming soon?

    I notice that my new Clip Jam doesn't seem to support the 'MTP' (Media Transfer Protocol) - whereas I believe older Clip models used to ? Is this something that will be introduced by a Firmware Upgrade at some point ? My current Firmware is '1.03' wh

  • Sound quality from nano(2nd generation)

    Please can someone help, in the last few days when i go to listen to my ipod either via earphones or dock the sound for all the world is like its underwater bubbly sound, i have tried everything and just wondered is there a way to fix this or do i ne

  • Impact of Rman restore on test server.

    Hi, I am working on oracle 10g on linux 64 bit I have rman backup from production database. Name and SID of production database is Prod1 and i want to to check this RMAN backup after restoring it on the other test server (VMDB) for Disaster recovery.