Copy of a database

I need to copy a database to a testserver, kan anybody tell me how to proceed without using a backup recovery
I exported the DB to a dmp file with exp function, but imp cannot
import it, what is the syntax and conditions to use imp4
Any help will hwlp :-)
DanskAdmin

Thanks for answering my request, I imported the database with
IMP username/password FILE=filename.dmp FULL=Y Log=implog-x.log
all my table and rows are imported succefully, unless one, I get
this faile
IMP-00058 ORACLE ERROR 904
ORA-00904 Invalide column name
The target database was new created and contain tables created by the samme process as the exported database but contain no data
I'm running oracle v. 8.1.6 without patch or upgrade Regards
idriss

Similar Messages

  • Install with a copy of existing database

    I am wondering if anybody had tried this:
    suppose you have a LiveCycle ES 8.0 running, all's well; let's call this system "A".
    now, you need to bring up another LC ES system on a separate server machine. let's call this system "B".
    But, since there are 2000 forms/processes in system "A" already,
    and you don't want to Import + Configure all those 2000 forms from "A" to "B", because it's a time-consuming, tedious and extremely boring work.
    So, is it possible to
    make a copy of the LCES database of system "A",
    and,
    during the install/configure/deploy LC ES onto "B", we configure "B" to connect to the COPY of the database (instead of letting the configuration manager configure/initialize a brand new database for B).
    would that work?
    if so, what would be the exact procedure?
    thanks

    Hello,
    Maybe the TargetDatabase and the DeployToDatabase properties can help you.
    http://www.asp.net/web-forms/tutorials/deployment/web-deployment-in-the-enterprise/deploying-database-projects
    You can deploy multiples databases from one project if you want, as explained on the following
    post:
    http://stackoverflow.com/questions/1544966/gdr-deploying-multiple-database-targets-with-one-project
    Hope this helps.
    Regards,
    Alberto Morillo
    SQLCoffee.com

  • Is it possible to copy the same database multiple times simultaneously?

    This is the setup of my environment.
    I have a 'master' database that contains the full schema plus some pre-populated data such as default settings. When database schema changes are made, they get made to the master database. When a new customer signs up for the service, I make a copy of this
    master database (using SMO) that will now be the database containing all of the customer's information. The database is rather large, and the copy operation can take a couple minutes.
    Everything works fine as expected, unless I try to provision two new customers at the same time. It appears that Azure only allows for one DB copy operation at a time. Is there a way to allow for copying the same database multiple times simultaneously?
    Thanks for you input. I understand that this is likely not the optimal setup, and that there is many better ways of doing this, but I am somewhat heavily invested in the current process and I would like to find out how to make it work if I can.

    BTW, you can do this programatically by using PowerShell (https://msdn.microsoft.com/en-us/library/ee210569.aspx), SqlPackage (http://www.benday.com/2012/12/18/deploy-a-sql-server-database-projects-dacpac-with-sqlpackage-exe/)
    or the SQL Server binaries for .NET (http://www.vijayt.com/Post/Deploying-a-data-tier-application-in-SQL-Azure-programatically)
    Hope this helps.
    Alex

  • Is it possible to create a copy of entire database, not the data, but just database structure?

    Greetings community,
    This question is related to EXPRESS edition.
    Let’s say that I have MyDatabase2014 and I’ve been populating it with some data during the year 2014. Before the end of the year, I want to prepare another database named MyDatabase2015, which should be empty, but of course it should have
    all tables, relations, indexes and stored procedures just like MyDatabase2014. The idea is just to change a connection string and to continue using the same app for the same job.
    So in SSMS, I right-clicked the database, choose script database as / create to / new query, but I didn’t get what I wanted. In query window I’ve got just create database statement, and below that few dozen of alter database set ansi this
    or that statements, and set many other things. However, no table creation was scripted. Also, no stored procedures have been created, and about users, and other security objects better not to start to talk about.
    I could have achieved that simply by right-clicking databases node and select new database. So what’s the point of “script database as”?
    Does this work in SQL server editions other than EXPRESS?
    When it comes to express edition, what’s the best practice to get the empty copy of a database?
    Thanks for any help.

    For scripting out the users and their permissions you can use this script
    -- Capture permissions for all users in a DB
    SET NOCOUNT ON
    DECLARE @Database varchar(max)
    SET @Database = '<Db_Name>'-- set the database name here
    IF EXISTS (SELECT * FROM SYS.SYSDATABASES WHERE name = @Database)
    EXEC('USE ' + @Database + ';
    DECLARE @temp table(Extract Varchar(MAX))
    INSERT INTO @temp (Extract)
    SELECT ''EXEC( ''''USE ' + @Database + '; IF NOT EXISTS (SELECT * FROM sys.schemas WHERE name = N'''''''''' + name + '''''''''')IF EXISTS (SELECT *
    FROM sys.database_principals WHERE name = N'''''''''' + name + '''''''''') DROP USER ['' + name + '']''''); ''
    FROM sys.sysusers WHERE islogin = 1 AND hasdbaccess = 1 AND name NOT IN (''dbo'')
    INSERT INTO @temp (Extract)
    SELECT ''EXEC( ''''USE ' + @Database + '; IF NOT EXISTS
    (SELECT * FROM sys.database_principals WHERE name = N'''''''''' + dp.name + '''''''''')
    CREATE USER ['' + dp.name + ''] FOR LOGIN ['' + sp.name + '']''''); ''
    FROM sys.server_principals sp
    JOIN sys.database_principals dp ON (sp.sid = dp.sid)
    AND dp.name NOT IN (''dbo'')
    INSERT INTO @temp (Extract)
    SELECT ''EXEC( ''''USE ' + @Database + '; IF NOT EXISTS
    (SELECT * FROM sys.database_principals WHERE name = N'''''''''' + dp.name + '''''''''')
    CREATE USER ['' + dp.name + ''] WITHOUT LOGIN ''''); ''
    FROM sys.database_principals dp left
    JOIN sys.server_principals sp ON (sp.sid = dp.sid)
    where dp.principal_id between 5 and 16383
    INSERT INTO @temp (Extract)
    SELECT ''EXEC( ''''USE ' + @Database + '; EXEC sp_addrolemember '''''''''' + User_Name([groupuid]) + '''''''''', '''''''''' + User_Name([memberuid]) +
    FROM sys.sysmembers WHERE User_Name([memberuid]) NOT IN (''dbo'')
    INSERT INTO @temp (Extract)
    SELECT ''EXEC( ''''USE ' + @Database + '; ''
    + CASE [a].[state_desc] WHEN ''GRANT_WITH_GRANT_OPTION'' THEN ''GRANT '' ELSE [a].[state_desc] END
    + '' ''
    + [a].[permission_name] + CASE class WHEN 1 THEN '' ON [''
    + [c].[name]
    + ''].[''
    + Object_Name([a].[major_id]) + ''] '' ELSE '''' END + '' TO [''
    + User_Name([a].[grantee_principal_id])
    + ''] '' + CASE [a].[state_desc] WHEN ''GRANT_WITH_GRANT_OPTION'' THEN '' WITH GRANT OPTION'' ELSE '''' END
    + ''''''); '' COLLATE Latin1_General_CI_AS AS [SQL]
    FROM sys.database_permissions a
    inner join [sys].[all_objects] b
    ON [a].[major_id] = [b].[object_id]
    inner join [sys].[schemas] c
    ON [b].[schema_id] = [c].[schema_id]
    INSERT INTO @temp (Extract)
    SELECT ''EXEC( ''''USE ' + @Database + '; ''
    + [a].[state_desc]
    + '' ''
    + [a].[permission_name]
    + '' TO [''
    + USER_NAME([a].[grantee_principal_id])
    + ''] '''');''
    from sys.database_permissions a
    where a.class=0
    INSERT INTO @temp (Extract)
    SELECT ''EXEC( ''''USE ' + @Database + '; ''
    + [a].[state_desc]
    + '' ''
    + [a].[permission_name]
    + '' ON SCHEMA ::''
    + '' [''
    + SCHEMA_NAME([a].[major_id]) +
    + ''] TO [''
    + USER_NAME([a].[grantee_principal_id])
    + ''] '''');''
    from sys.database_permissions a
    where a.class=3
    SELECT Extract AS [Extract] FROM @temp
    GO
    ELSE
    SELECT '--NO'
    GO
     

  • 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.

  • Offline copy of SQL Database in Visual Studio Community Edition?

    I'm using an Azure Mobile Service and SQL database, and I'm interacting with it via Visual Studio Community Edition (12.0.31101.00 Update 4).
    I'm often offline, but want to work on and test the SQL code.  Is there a way to sync a local copy of the database to my pc so I can work with that to test my code?  I'm not necessarily looking to make changes to the database offline and syncing
    that back to the server, although that would be nice too.
    Thanks!

    Hello Scott,
    You could use SQL Data Sync to synchronize your local copy of the database with the Azure SQL database. The details are documented at http://msdn.microsoft.com/en-us/library/hh456371.aspx. 
    PS - the SQL Data Sync feature is still in preview and the support is only through forums.
    Regards,
    Kumar Bijayanta

  • Copying existing logical database

    HI ,
    I have copied one logical database CRMLDB_SERVICE_MON and it has lot of selection entries which doesnt comes under my requirement . My req is to just to have three selection parameters . selection parameters are under some standard include . while copying it didnt ask me to give new name for that include and it has copied as it is the standard one. No i need to change the standard include which i should not do it.
    Can you please tell me how do i copy the standard include of selections in logical database into my defined Z name as while copying it is not asking me to give a z name for standard include.
    Thanks,
    Ahmed.

    someone please reply

  • Copying a template database

    hey,
    I am wondering how to copy a template database I have created (templte.mdb)to another directory using SQL. I am writing a program in java and using the javax.sql package. The way the program operates is that at 12 o clock at night a new database is created for that date 2 year ahead. So for example tonight at 12 o'clock a copy of the database (template.mdb) would be placed in the folder c://databases//2006//march//..... The problem is that I dont know the commands to copy the template database exactly. I need to keep the same column names,structure etc in all the databases!
    Any help would be greatly appricated
    Stephen

    An Access database file....
    1. Put a blank database into a directory.
    2. Copy that file using Runtime.exec() to the destination directory, giving it a new name.
    3. Start using it.

  • Partial copy of the Database

    Hello!
    I need to make a partial copy of the Database, as I do from the sap? or how can I make from oracle? if possible?
    What we require is to make a copy of the configuration data SPROM and a copy two months ago of data
    greetings!

    Hello,
    QAS (or test) systems should be build the cleanest way possible.
    Remote client copy is not something I would advise. It requires to have source and target systems align with the same structure (same SP, same transport level,u2026), and it will transport client dependant objects, until you specify to move also client independent objects, then it will overwrite the objects in the target system (development, printer definitions, RFC,u2026). 
    NRIV table should not be copied between systems, even a subset of this table. Number range should be adjusted individually on each system.
    Also, if your systems are validated by regulation or industry standards (pharma, banking,u2026), you can not overwrite your QAS from any system (DEV or PRD)
    But we are still not sure about Edithu2019s motivation, and what she means by partial restore. Is it motivated to get master and transactional data in QAS to test for the next Go-live rollout? Is it a copy from the production system? Is it to align PRD and QAS in term of customizing in order to prepare for the next rollout because there is a change management gap between 2 systems? Is it to get an older version of customizing?
    Thanks in advance
    Best regards.
    Frank Markarian
    Principal consultant
    SAP America.

  • Copy linked server database and create database on same server

    Hi ALL
    I have one linked server i need to copy it whole database in SQL on same server where linked server is created .
    Kindly help me .
    Thanks
    with regards
    BI_Group

    Hi BI_group,
    You can try Microsoft SQL Server Migration Assistant for MySQL. For more detail information, please refer to the following link:
    Microsoft SQL Server Migration Assistant for MySQL
    http://www.microsoft.com/en-us/download/details.aspx?id=28764
    Migrating MySQL Databases to SQL Server / SQL Azure
    http://msdn.microsoft.com/en-us/library/hh313125.aspx
    Converting MySQL Databases (MySQL to SQL)
    http://msdn.microsoft.com/en-us/library/hh313137.aspx
    Allen Li
    TechNet Community Support

  • HOW2 FIND VERSION OF SYBASE DATABSE AND SEND A COPY OF THIS DATABASE 2 3RD PARTY

    HI, i have been asked by a colleague for the following..is this possible:
    Hornbill need to know what version of Sybase we use for Zenworks.
    Also, they would like a copy of the database.
    Is that practical ??
    We are running:
    Netware 6.5
    Zenworks for desktops 6.5
    regards
    Dennis

    Version - Sybase SQL Anywhere 10.0
    Here is how you do a backup/restore.......................
    http://www.novell.com/documentation/.../bookinfo.html
    Craig Wilson - MCNE, MCSE, CCNA
    Novell Support Forums Volunteer Sysop
    Novell does not officially monitor these forums.
    Suggestions/Opinions/Statements made by me are solely my own.
    These thoughts may not be shared by either Novell or any rational human.
    "Dennis" <[email protected]> wrote in message
    news:XEHTi.18199$[email protected] ..
    > HI, i have been asked by a colleague for the following..is this possible:
    >
    > Hornbill need to know what version of Sybase we use for Zenworks.
    >
    > Also, they would like a copy of the database.
    > Is that practical ??
    >
    >
    > We are running:
    >
    > Netware 6.5
    > Zenworks for desktops 6.5
    >
    >
    > regards
    >
    > Dennis
    >
    >
    >

  • 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

  • How to copy table from database in one forest to a database in a different forest?

    Hello Community
        Using Wndows 2008 Server Enterprise there exists 2 Forests,
    each containing their own SQL Server 2008 installations, a scenario exists as follows:
         a)"Domain1" resides in "Forest1" which has SQL Server 2008 containing
             a database named "Database1" which contains a table named "Table1".
         b)"Domain2" resides in "Forest2" which also has SQL Server 2008
             but containing a database named "Database2"which contains a table
             named "Table2".
        I tried to use <domain_name>.<server_name>.<owner_name>.object
    but that syntax didn't work.
        How can I copy "Table2" from "Database2" into "Database1"
    (keeping in mind the databases are in different forests and domains)?
        Thank you
        Shabeaut

    Configuring a linked server might help you
    http://social.msdn.microsoft.com/Forums/sqlserver/en-US/329709ca-349d-490d-9b42-7443caa97364/how-to-created-linked-server-between-two-different-domains?forum=sqlsecurity
    OR
    Generate the schema with data of Table1 using scripting wizard under advance setup and execute the sql file in domain2.
    -Prashanth

  • How to copy/move Portal database from one machine to another?

    I am receiving a ORA-22973 error (size of object identifier exceeds maxmum size allowed) on the wwsec_enabler_config_info$ table when attempting to import my entire "portal30" schema from one database to another on different Windows NT Servers.
    Background: I had Portal 3.0.9.8 installed, configured, and running with the following setup:
    Machine 1: Windows NT 4.0 SP 6, Oracle 9iAS 1.0.2.2, Oracle Portal 3.0.9.8
    Machine 2: Windows NT 4.0 SP 6, Oracle 8i Database 8.1.7.0.0
    We no longer have use of Machine 2 and needed to move the database over to Machine 1.
    I performed the following steps:
    1. Installed Oracle 8i database 8.1.7.0.0 on Machine 1.
    2. Set up the tablespaces in the database on Machine 1 to match the same names and sizes of the tablespaces in the database on Machine 2.
    3. Used the Oracle "exp" command to export the entire database that resided on Machine 2.
    4. Copied the ".dmp" file to Machine 1.
    5. Used the Oracle "imp" command to import the entire database on Machine 1.
    6. The import completed successfully with warnings. But I had received the ORA-22973 error during the import process.
    7. After it completed I compared the list of tables and packages in the "portal30" schema between the two databases. The wwsec_enabler_config_info$ table is missing.
    8. I tried to export and import only the wwsec_enabler_config_info$ table between the two databases, but continue to receive the ORA-22973 error.
    Without the table being created, access to the portal cannot be achieved.
    Here are my questions:
    1. Is there anyway to create the wwsec_enabler_config_info$ table without receiving the noted error?
    2. Is there any other workable way to get the portal database from Machine 2 to Machine 1?
    I am aware of the portal import/export utilities but that would require me to run through the 2 hour install of Portal 3.0.9.8 on the database on Machine 1 and then individually export and import all the portal components (security, pages, applications, content library, etc). I merely wanted to transfer the entire database from one machine to another, so I felt the Oracle exp/imp utilities would be quicker and less work.

    Hi,
    I've been hitting problems with Portal 3.0.9.8.1 against 8.1.7.2.1 on NT - i.e., Intermedia not working at all, and have been advised by support to move back to 8.1.7.1.1.
    I don't want to lose any of my content in the Portal since the db upgrade and am wondering on what is the best way to do this.
    The version of the Portal will be the same so I am hoping I can just use the Portal export and import utilities, as afterall, it is just data and the schema structures are the same between db versions. I'm also hoping that the Portal export doesn't use the standard Oracle EXP tool as it doesn't work anymore on 8.1.7.2.1 on NT!!
    Regards,
    John

  • How to create a new database after copying an existing database with a new name

    hi
    i have an existing database and want to copy with a new name in sql server 2005 how do it is possible 
    spose
    i have a db name attached in sql server StoreManagementDB now i want to copy this database with all the transactions as StoreManagementDB_1.
    thanks

    Use a two steps to use a backup file to restore a database with a new name.
    ----You need to have a full backup of your database:
    --Step 1:
    RESTORE FILELISTONLY
    FROM DISK = 'C:\bk\TEST.BAK'
    --Find out the LogicalName of data file and log file
    -- in this case: the data file: TEST and the log file LogicalName: TEST_log
    --Both names will be used in the MOVE command
    --Step 2:
    -- Restore the files for test1.
    RESTORE DATABASE test1
    FROM DISK = 'C:\bk\TEST.BAK'
    WITH RECOVERY,
    MOVE 'TEST' TO 'C:\bk\test1_Data.mdf',
    MOVE 'TEST_log' TO 'C:\bk\test1_Log.ldf'
    GO

  • Healthy copy of mailbox Database in DAG acting as a seeding source for another Healthy copy Database in DAG

    Overview of the architecture
    We have Site (Primary & DR)
    2 Database copies in primary site and 1 Database on the DR site (Primary site 2 copies one mounted and second healthy & on the DR site one healthy copy of Database)
    Recently Due to Network Problem the DR copy got in to the easyncronous state and was removed from the DAG.
    As company does not want the downtime we have followed the below steps to Restore Database at DR site.
    1)Stopped the backup to Not trucate the log file
    2)Took Full backup and in the restore mode we shipped the full backup to the DR site.
    3)As the above process needs 2 days, manually copied the some Logs to the DR site (IN some drive as much possible to reduce seed time)
    4)Added the mailbox database of the DR site back in the DAG as its seeds from the start, we manually suspend the process post the Database folder hierrachy  gets created
    5)Added the EDB and logs files in the recently created folders
    6)Resumed the Database seed, so only the remaining logs were copied and seeded from primary site to DR site, In some hours DR site databse became healhty with no copy queue and replay queue.
    7)trucated the logs which synced using DAG
    Now Dag has copies as initial setup but the since we followed the above process the primary site healthy copy is acting as the seed-source and logs not truncating for the database
    When restarts the Replication services on the Primary site server with healthy the state becomes healthy but again after some time it becomes seed- source.
    Wanted to know when DR site copy is in healthy state why its acting as a seed-source continueously
    Need Experts advice in manage Database copies in healthy state...
    Thanks in Advance

    Hi,
    Based on your description, sometimes the content index state of passive database copy in primary site is healthy, but sometimes the state is crawling.
    You can use the following command to reseed the catalog only to check result.
    Update-MailboxDatabaseCopy -Identity Database -SourceServer EX -CatalogOnly
    Best regards,
    Belinda Ma
    TechNet Community Support

Maybe you are looking for

  • Add-on installation problem in Windows Server 2003

    Hi guys, I have a problem when i want to install my add-on in the Windows Server 2003. The server gives me error : Unable to load AddOnInstallAPI.dll and when i try install using the same installer at the client station, everything is ok. Does anybod

  • Install of CS 5.5 Master Collection fails on Win 7 x64 Professional

    This is happening after a clean install of windows with no other adobe applications installed. Exit Code: 6 -------------------------------------- Summary -------------------------------------- - 0 fatal error(s), 6 error(s), 15 warning(s) WARNING: D

  • Display currency in header status ME23N incorrect

    Dear All, I need your advice I create PO, MIGO and MIRO in currency "USD".. but when I checked the status in PO header, the invoiced amount is not in USD currency but the invoiced amount is in local currency. How to fix it? so, the invoiced amount wi

  • ArrayIndexOutOfBoundsException while starting weblogic

    Hi, While trying to start weblogic in our production(solaris) environment i am getting the following error. Server not starting.. http://<hostname>:<port>/console * + /itsun105apps01/misek/java/j2sdk1.4.0_03/bin/java -server -Xms1024m -Xmx1024m -XX:N

  • ITS.ear Wireless -- how to remove appl from embedded OC4J config JDev b4157

    The embedded container configuration currently includes ITS.ear; I'd like to remove this from the default applications started by embedded container. The JDev (10.1.3.41.57) Tools .. Embedded OC4J Server Preferences .. Applications list includes ITS.