Restroring Encrypted Production database to Encrypted Dev database

I have a production instance of SQL Server 2008 R2 running Master Data Services encrypted using using a certificate named "MDSCertP" by password "CertP1234".  I have a development instance of SQL Server 2008 R2 running Master Data
Services encrypted using using a certificate named "MDSCertD" by password "CertD1234".    I've been asked by the the developer to restore a production copy of the MDS database to dev.
I understand that to restore successfully, I l need to physically copy the certificate (.cer) and private key (.pvk) to the dev server.
Am I going to kill the dev instance by copying the prod certs?  Is there a better practice to refresh the data on dev?
Thanks,
:g

Hi,
To restore a encrypted database on another instance, besides the certificate and private key, you also need backup the master key and restore it on the second instance.
RESTORE MASTER KEY FROM FILE = 'path_to_file'
    DECRYPTION BY PASSWORD = 'password'
    ENCRYPTION BY PASSWORD = 'password'
[ FORCE ]
You can refer to the below article for details:
http://philipflint.com/2011/01/19/how-to-encrypt-a-sql-server-database/comment-page-1/
BACKUP and RESTORE Statements (Transact-SQL)
http://msdn.microsoft.com/en-us/library/ff848768.aspx
Hope it helps.
Tracy Cai
TechNet Community Support

Similar Messages

  • Database-level encryption

    Does Oracle database support database-level encryption?

    See Oracle Advanced Security for network (client/server) encryption and DBMS_OBFUSCATION_TOOLKIT for data level security.

  • Create dev database from standby database

    Hi folks,
    I need to create a dev database by using RMAN's method of cloning. But, since it is business hours and the production database is being used at a very high rate, I cannot carryout the cloning by connecting the primary database as it may cause performance slowness.
    The time allotted for the activity is also very short. We have a standby database created for the primary database. So, my question is it possible for me to create the dev database using the standby database ?
    Database version is 11.1.0.6 and I can go ahead with the active database feature.

    Yes, you can clone from the standby database. Follow the below steps.
    1. Check if your standby database is in sync with the primary database.
    2. Cancel the MRP on the standby database.
    alter database recover managed standby database cancel;3. connect to standby as target database and dev database as auxiliary
    rman target sys/<pwd>@<standby-alias> auxiliary sys/pwd@<dev-alias>4. Your standby database would be in mount stage and dev in nomount stage.
    5. Run the duplicate command
    rman>duplicate target database to 'dev' nofilenamecheck;6. Once done, start the MRP on the standby database
    alter database recover managed standby database disconnect from session;

  • Refresh a dev database

    Hi
    I'm trying to refresh dev database from prod through rman,
    Dev was already refreshed 3 months ago , we are planning it again.So, the structure and datafile name are same on both.Prod is about 100GB.
    If I use rman, can rman update the existing files as the file structure is similar to prod. or I've to drop the database and follow regular duplication process(If i do this I will have to keep developers idle for long time)
    I'm trying have very less down time.
    Below is the script I'm using , Could any one advice me
    run{
    CONFIGURE AUXNAME FOR DATAFILE 1 TO '/u12/oradata/shark/system01.dbf';
    CONFIGURE AUXNAME FOR DATAFILE 2 TO '/u05/oradata/shark/undotbs01.dbf';
    CONFIGURE AUXNAME FOR DATAFILE 3 TO '/u20/oradata/shark/undotbs03.dbf';
    CONFIGURE AUXNAME FOR DATAFILE 4 TO '/u25/oradata/shark/undotbs02.dbf';
    CONFIGURE AUXNAME FOR DATAFILE 5 TO '/u05/oradata/shark/drsys01.dbf';
    CONFIGURE AUXNAME FOR DATAFILE 6 TO '/u18/oradata/shark/tools01.dbf';
    CONFIGURE AUXNAME FOR DATAFILE 7 TO '/u18/oradata/shark/users01.dbf';
    CONFIGURE AUXNAME FOR DATAFILE 8 TO '/u30/oradata/shark/xdb01.dbf';
    CONFIGURE AUXNAME FOR DATAFILE 9 TO '/u02/oradata/shark/u02_data.dbf';
    CONFIGURE AUXNAME FOR DATAFILE 10 TO '/u03/oradata/shark/u03_data.dbf';
    CONFIGURE AUXNAME FOR DATAFILE 11 TO '/u04/oradata/shark/u04_data.dbf';
    CONFIGURE AUXNAME FOR DATAFILE 12 TO '/u06/oradata/shark/u06_data.dbf';
    DUPLICATE shark DATABASE TO devl
    LOGFILE
    GROUP 1 (
    '/u04/oradata/shark/redo01.log',
    '/u06/oradata/shark/redo01b.rdo'
    ) SIZE 100M REUSE,
    GROUP 2 (
    '/u24/oradata/shark/redo02.log',
    '/u19/oradata/shark/redo02b.rdo'
    ) SIZE 100M REUSE,
    GROUP 3 (
    '/u16/oradata/shark/redo03.log',
    '/u20/oradata/shark/redo03b.rdo'
    ) SIZE 100M REUSE,
    GROUP 4 (
    '/u20/oradata/shark/redo04.log',
    '/u26/oradata/shark/redo04b.rdo'
    ) SIZE 100M REUSE,
    GROUP 5 (
    '/u26/oradata/shark/redo05.log',
    '/u19/oradata/shark/redo05b.rdo'
    ) SIZE 100M REUSE;
    Do you think the above would update the exiting one...
    oops..
    ORACLE 9.2.0.7
    Sun os solaris 10
    Edited by: ORA_DBA2 on Sep 2, 2008 2:40 PM

    Or if you haven't got GRID
    1. Create A Backup Control File Script.
    First you need to obtain a script that will create a copy of the existing control file. This is usually carried out with the SVRMGRL utility using the following commands:
         CONNECT INTERNAL
         ALTER DATABASE BACKUP CONTROLFILE TO TRACE RESETLOGS;
    This creates a file in the trace file directory. The file usually has the extension '.trc' and will be located either in the directory defined by the parameter 'user_dump_dest', or if this parameter is undefined it will be in $ORACLE_HOME/rdbms/log. Edit this file with your favourite editor and remove the crud. Then rename it as "ctrl<NEW_SID>.sql," where <NEW_SID> will be the ORACLE_SID of the copied database.
    2. Modify The Script Created In The Previous Step.
    The CREATE CONTROLFILE command in the script ctrl<NEW_SID>.sql contains SQL, which might look something like this:
         CREATE CONTROLFILE REUSE DATABASE "OLD_SID" RESETLOGS ARCHIVELOG
         MAXLOGFILES 32
         MAXLOGMEMBERS 2
         MAXDATAFILES 32
         MAXINSTANCES 16
         MAXLOGHISTORY 1815
         LOGFILE
         GROUP 1 'E:\ORACLE\ORADATA\OLD_SID\REDO03.LOG' SIZE 1M,
         GROUP 2 'E:\ORACLE\ORADATA\OLD_SID\REDO02.LOG' SIZE 1M,
         GROUP 3 'E:\ORACLE\ORADATA\OLD_SID\REDO01.LOG' SIZE 1M
         DATAFILE
         'E:\ORACLE\ORADATA\OLD_SID\SYSTEM01.DBF',
         'E:\ORACLE\ORADATA\OLD_SID\RBS01.DBF',
         'E:\ORACLE\ORADATA\OLD_SID\TEMP01.DBF',
         'E:\ORACLE\ORADATA\OLD_SID\TOOLS01.DBF',
         'E:\ORACLE\ORADATA\OLD_SID\INDX01.DBF',
         'E:\ORACLE\ORADATA\OLD_SID\DR01.DBF',
         'E:\ORACLE\ORADATA\OLD_SID\WORK01.DBF',
         'E:\ORACLE\ORADATA\OLD_SID\TEMP02.DBF'
         CHARACTER SET WE8ISO8859P1
    Where the string <OLD_SID> is the Oracle SID of the original database. This should be changed to <NEW_SID>. Normallly this will be contained somewhere in the full filespec (path + filename) of all redo logs, data logs and control files. If it isn't then it should have been. This entire document assumes that you have the SID somewhere in the full filespec of these crucial files and furthermore that there are no embedded spaces or other weird characters in these filespecs. If you failed to observe these universal conventions when you setup your database, you should not try to use any of the procedures outlined in this document.
    3. Copy The Existing Database To The New Location.
    This will be a "cold" copy. So obviously you should make sure that the database is shutdown and all services are stopped before attempting to "cold" copy the database.
    If the copy is on the same host, you can use the DOS copy command (once the instance is shutdown). If you are lack the manual dexterity required for a keyboard you can copy the files with a mouse. If the target is a remote host then you will have to copy to a mass storage device or copy across the network.
    On the target host you need to copy all parameter files and all files mentioned above to their new location. Make sure you preserve ownership and permissions. The copied init<OLD_SID>.ora should be renamed to init<NEW_SID>.ora, and any parameter files pointed to by an ifile parameter (e.g. parameter files such as config<OLD_SID>.ora) should be renamed to contain <NEW_SID> (e.g. config<NEW_SID>.ora).
    The datafiles and redo log files from the pervious step also need to be renamed to contain the <NEW_SID> in the full filespec.
    4. Set Up Parameter Files For The New Database
    There may be several parameters that need to be edited in init<NEW_SID>.ora. In particular you will need to edit the control_files parameter so that it points to the name and location that you want to use for the new control files. You will also have to change the DB_NAME parameter in init<NEW_SID>.ora. Change it to the newname for your database. Usually this corresponds the <NEW_SID>. Any 'ifile' parameters will need to be edited to point to the new name of the include file in the new location.
    5. Create The Control File For The New Database.
    Now edit the file ctrl<NEW_SID>.sql and strip out everything up to and including the STARTUP NOMOUNT command. Remove the ALTER DATABASE OPEN command and everything after it. This leaves a command which just creates the controlfile.
    Now change all the appropriate instances of <OLD_SID> to <NEW_SID>. Unless you have a very good reason for doing so, you should make the database name the same as <NEW_SID>. Save this script in an area where you will find it again.
    Make sure that your ORACLE_SID is set to <NEW_SID>. Then use the SVRMGRL utility to run the following commands:
         STARTUP NOMOUNT
         @ctrl<NEW_SID>
    6. Create The Services For NEW_SID
    Create the services "OracleService<Sid>" and the "OracleStart<Sid>" for "NEW_SID" with the following command:
    oradim -new -sid <NEW_SID> -intpwd <password> -startmode auto -pfile <path_name>
    7. Run 'CREATE CONTROLFILE' For <NEW_SID>
    Make sure that your current directory is the one that contains ctrl<NEW_SID>.sql
    Set your ORACLE_SID to <NEW_SID>
    Startup SVRMGRL and enter the following:
         CONNECT INTERNAL
         STARTUP NOMOUNT PFILE=<full path>\init<NEW_SID>.ora
         @ctrl<NEW_SID>
         ALTER DATABASE OPEN RESETLOGS;
    Automating This Process.
    Creating a clone of an Oracle Database is the type of thing that you might wish to carry out regularly. you might do this on a regular basis because:
    * You wish to create a test instance of your production system.
    * You wish to create another working copy of your production system for reporting purposes or for some form of off-line processing.
    Obviously if you had to do this regularly you would write a script. If you are proficient at writing CMD scripts you could write a .cmd or .bat file to carry out these steps.
    You would have to clobber the <NEW_SID> instance before you created the clone. But that could be easily accomplished in a CMD script. However some of the things that would be cumbersome in a CMD script would be:
    * Changing the CREATE CONTROLFILE script when your database is altered (e.g. when you add a datafile to a tablespace).
    * Creating a third copy (e.g. NEW_SID1).
    * Creating a copy from an entirely different database.
    Obviously these contingincies can be handled ... but usually it means re-writing or re-creating the CMD script.
    Perl is so versatile that it does not have these problems.
    coldarch.pl
    The coldarch perl script creates a cold archive of an Oracle database on Windows NT/2000. The archive is a separate directory. It could be on the same machine as the host. However, in the interest of data integrity, it would make more sense to place it on a remote host (via the network).
    The script relies on site specific variables that are set in the common.pl file.
    The coldarch command is intended for incorporation into a script file. Ideally it should be incorporated into a routine backup schedule. However, if it is being invoked from a command line, the syntax would be as follows:
         coldarch intrnl_passwd db_name
    Where:
    intrnl_passwd is the Internal password of the database.
    db_name is the database_name (should also be the SID).
    The logic of the script is as follows:
    1. Validate the command line parameters and the common.pl variables.
    2. Create a lock file, to prevent a second copy of the program from running.
    3. Initialise strings for a logfile and a Header File (for the archive directory)
    4. Use SQL queries to gather information about control_files, datafiles, redo logs and locations of important files.
    5. Create a script that will can CREATE CONTROL file
    6. Shutdown the database.
    7. Add the datafiles to the zip archive.
    8. Copy the parameter files and included files (ifiles) to the archive directory.
    9. Add the control file and redo logs to the zip archive.
    10. Depending on the value of the variable $OPEN_TYPE, open the database. Some sites may choose not to open the database, because the coldarch procedure is integrated into the backup schedule. The variable $OPEN_TYPE is hard-coded in the coldarch script.
    coldclone.pl
    The coldclone perl script restores a cold archive of an Oracle database to a Windows NT/2000 host. The Target SID must differ from the source SID.
    The script relies on the same site specific variables that the coldarch script relies on. These are set in the common.pl file.
    The coldclone command is intended for incorporation into a script file. If it is being invoked from the command line, the syntax would be as follows:
         coldclone src_dir intrnl_passwd db_name
    Where:
    src_dir is the directory where the cold arhive resides.
    intrnl_passwd is the Internal password of the database.
    db_name is the database_name (should also be the SID).
    The logic of the script is as follows:
    1. Validate the command line parameters and the common.pl variables.
    2. Verify that the database is shutdown.
    3. Create a lock file, to prevent a second copy of the program from running.
    4. Initialise strings for a logfile.
    5. Parse the archive header, to determine the location of various files.
    6. Verify that the database is a clone -- This script has been expressly written to create a clone. You would need a diffent script to do a restore.
    7. Completely clobber the existing database (use the oradim utility to blow it away). You have passed the point of no return.
    8. Unpack the datafiles from the zip archive.
    9. Copy the parameter files and included files (ifiles) to the archive directory.
    10. Construct an SQL query from the trace file (created by coldarch), which contains the CREATE CONTROLFILE.
    11. Create the database anew with oradim. Start it up (NOMOUNT) and run the CREATE CONTROLFILE script. Open the database. (ALTER DATABASE OPEN).

  • Migrate SQL 2008 Analysis database to 2012 AS database along with data level security defined in current production cube

    I want to migrate Analysis Services 2008 database to 2012 AS database along with data level security defined in current production cube
    Note: Only Production environment have security, while no security is defined in development environment
    Potential Approach:
    1 - Using Synchronization Wizard: Gives me error : "The OLAP element at line1 can not appear under envelope......" and this is because Synchrinzation works only for same version
    and in my case, there are different versions of SQL (SQL 2008 and 2012)
    2 - Using Visual studio conversion wizard - Convert SQL 2008 AS project to 2012 and then process cube, so I can get the cube working but then how can I get data level security since 100's of data level security is defined in production Cube, so how can I
    migrate that across
    3 - Script out XMLA and deploy cube - But then again having issues with how can i script SSAS security
    4 - Would taking backup of SSAS 2008 database and restore to SSAS 2012 will help ?
    Any suggestions would be appreciated
    Thanks,
    Mihir

    Hi Mihir,
    According to your description, you want to migrate the SQL Server Analysis Services (SSAS) 2008 database which have some security setting with it to SSAS 2012, right? We can migrate existing Analysis Services databases either during Setup, by upgrading an
    existing instance of Analysis Services, or after Setup, by running the Migration Wizard. Generally, when migrating a database to another server, all the setting will be migrated. So in your scenario, you can refer to the steps on the links below to migrate
    your SSAS database.
    How to: Migrate Analysis Services Databases
    Migrating Existing Analysis Services Databases
    Regards,
    Charlie Liao
    TechNet Community Support

  • Export controls - Encryption Products Concern

    Hi,
    There is some concern on shipping of encryption product families to certain countries.
    How do we achieve this, do we have std functionality in GTS or we need a flag such products products in ECC to meet the regulatory obligations.
    Can somebody throw somelight on this as to how to achieve on SAP GTS?
    Thanks in advance,

    Hi,
    If you have preference processing service activated in Risk management. you can define base rules and additional conditions for preference processing. If the product fulfills the additional condition, you set the Condition OK indicator. You only set this indicator for products that meet the assigned additional condition. The system evaluates the indicator when determining the preference.
    This specifically helps when you trade in  loops of regional trade agreements and have to determine whether the product fits in the preference eligibility criterion of varied regional trade agreements.
    Otherwise: A license is triggered with the combination of Control Class (ECCNs), Country of destination and departure, Partner etc.
    So, Even if the preference processing is not activated. We can Control the shipments of a specific ECCN to certain countries through license.

  • How to clone my SAP (production) to my SAP (dev) ?

    I need to clone my SAP (production) to my SAP (dev).
    What are the proper procedures of it ?
    Thanks a lot.

    Hi Ming,
    Based on requirement you can decide upon the approach.
    1) In case you need to have all the data from PRD to DEV you can go with homogenous system copy method using backup/restore or Export / import.
    2) In case you need to have only master data copied from PRD to DEV, you need to use SAP TDMS to perform the data transfer from PRD to DEV. Additional license will be required for SAP TDMS.
    3) In case your database size not high ( say less than 500 GB) and you need all the data from PRD to DEV, you can perform client copy from PRD to DEV using profile SAP_ALL.
    Hope this information is useful.
    Regards,
    Deepak Kori

  • DRM-79819: Encryption error: Config file encryption is not valid for this m

    Hi ALL,
    Suddenly we got this error while running an export via batch utility. any ideas?
    Error: DRM-79819: Encryption error: Config file encryption is not valid for this machine.

    This could be an issue with your drm-config.xml file, the file that stores the DRM configuration information defined in the DRM Console. If a drm-config.xml was restored from an old backup or copied from another machine, this could well be the issue.
    In this case, you can run the DRM Console to update the file and correct it. You may see a one-time error reported when the DRM Console starts up, but the Console app should correct the file automatically after reporting the error to the user.
    If this does not resolve your issue, review the Windows App Event Log, to determine which DRM Server process(es) are also reporting this error (to narrow down any other potential issues with a config file for one of the DRM Server executables). I am guessing this error was observed in just the DRM Batch client, but related Event Log should also be present in the App Event Log.
    HTH.
    *** An additional note, if your issue proves to be the one above, you may need re-enter passwords on your defined Database Connections for defined DRM Apps. Try just re-running the DRM Console and re-saving the config initially, but be aware this may be a required additional step, re-entering the DB passwords after the updated encryption has been applied to the stored drm-config.xml file.
    Edited by: 680314 on Jan 19, 2013 11:52 AM

  • Logical Database design and physical database implementation

    Hi
    I am an ORACLE DBA basically and we started a proactive server dashboard portal ,which basically reports all aspects of our infrastructure (Dev,QA and Prod,performance,capacity,number of servers,No of CPU,decomissioned date,OS level,Database patch level) etc..
    This has to be done entirely by our DBA team as this is not externally funded project.Now i was asked to do " Logical Database design and physical Database
    implementation"
    Even though i know roughly what's that mean(like designing whole set of tables in star schema format) ,i have never done this before.
    In my mind i have a rough set of tables that can be used but again i think there is lot of engineering involved in this area to make sure that we do it properly.
    I am wondering you guys might be having some recommendations for me in the sense where to start?are there any documents online , are there any book on this topic?Are there any documents which explain this phenomena with examples ?
    Also exactly what is the difference between logical database design vs physical database implementation
    Thanks and Regards

    Logical database design is the process of taking a business or conceptual data model (often described in the form of an Entity-Relationship Diagram) and transforming that into a logical representation of that model using the specific semantics of the database management system. In the case of an RDBMS such as Oracle, this representation would be in the form of definitions of relational tables, primary, unique and foreign key constraints and the appropriate column data types supported by the RDBMS.
    Physical database implementation is the process of taking the logical database design and translating that into the actual DDL statements supported by the target RDBMS that will create the database objects in a target RDBMS database. This will generally include specific physical implementation details such as the specification of tablespaces, use of specialised indexing (bitmap, clustered etc), partitioning, compression and anything else that relates to how data will actually be physically stored inside the database.
    It sounds like you already have a physical implementation? If so, you can reverse engineer this implementation into a design tool such as SQL Developer Data Modeller. This will create a logical design by examining the contents of the Oracle data dictionary. Even if you don't have an existing database, Data Modeller is a good tool to use as a starting point for logical and even conceptual/business models.
    If you want to read anything about logical design, "An Introduction to Database Systems" by Date is always a good starting point. "Database Systems - A Practical Approach to Design, Implementation and Management" by Connolly & Begg is also an excellent reference.

  • How to copy a database to a new database on Windows 32bit?

    Hi Gurus,
    I have a production database 10g on Windows 32bit and I want to make a copy of this database as Test in same server ?
    Please help....
    Thanks,

    How big is your database?
    1)If database size is small, create a blank test db . Export from Production using expdp and impdp onto Test.
    2)If database size is hundreds of gb's use rman duplicate command. As you are restoring on to same host
    configure db_file_name_convert/log_file_name_convert in your pfile properly
    And also control_files parameter to new location in your new pfile.
    Refer: http://docs.oracle.com/cd/B19306_01/backup.102/b14191/rcmdupdb.htm#i1006859
    Edited by: vreddy on Sep 7, 2012 2:03 PM

  • SQL1013N  The database alias name or database name "FCS" could not be found

    Hi All,
    Solution manager is running on win2003 server with db2 database.When i m trying to connect db2 from command promt i m getting error.I m following these step.
    1.Loging with db2 user
    2.In command promt when i m tring to check the cfg file getting error.
    DB2 get db cfg for fcs.
    SQL1013N  The database alias name or database name "FCS" could not be found.
    SQLSTATE=42705
    I m pasting the snapshot of of database manager.
    C:\>db2 get snapshot for dbm
                Database Manager Snapshot
    Node name                                      =
    Node type                                      = Enterprise Server Edition with
    local and remote clients
    Instance name                                  = DB2
    Number of database partitions in DB2 instance  = 1
    Database manager status                        = Active
    Product name                                   = DB2 v9.1.600.703
    Service level                                  = s081007 (WR21415)
    Private Sort heap allocated                    = 0
    Private Sort heap high water mark        = 0
    Post threshold sorts                                = Not Collected
    Piped sorts requested                          = 0
    Piped sorts accepted                           = 0
    Start Database Manager timestamp      = 07/29/2010 11:35:25.534766
    Last reset timestamp                           =
    Snapshot timestamp                             = 08/03/2010 18:43:14.492590
    Remote connections to db manager               = 0
    Remote connections executing in db manager     = 0
    Local connections                              = 0
    Local connections executing in db manager      = 0
    Active local databases                         = 0
    High water mark for agents registered          = 2
    High water mark for agents waiting for a token = 0
    Agents registered                              = 2
    Agents waiting for a token                     = 0
    Idle agents                                    = 0
    Committed private Memory (Bytes)               = 11141120
    Switch list for db partition number 0
    Buffer Pool Activity Information  (BUFFERPOOL) = OFF
    Lock Information                        (LOCK) = OFF
    Sorting Information                     (SORT) = OFF
    SQL Statement Information          (STATEMENT) = OFF
    Table Activity Information             (TABLE) = OFF
    Take Timestamp Information         (TIMESTAMP) = ON  07/29/2010 11:35:25.534766
    Unit of Work Information                 (UOW) = OFF
    Agents assigned from pool                      = 2542
    Agents created from empty pool                 = 4
    Agents stolen from another application         = 0
    High water mark for coordinating agents        = 2
    Max agents overflow                            = 0
    Hash joins after heap threshold exceeded       = 0
    Total number of gateway connections            = 0
    Current number of gateway connections          = 0
    Gateway connections waiting for host reply     = 0
    Gateway connections waiting for client request = 0
    Gateway connection pool agents stolen          = 0
    Memory usage for database manager:
        Memory Pool Type                           = Database Monitor Heap
           Current size (bytes)                    = 65536
           High water mark (bytes)                 = 65536
           Configured size (bytes)                 = 327680
        Memory Pool Type                           = Other Memory
           Current size (bytes)                    = 10092544
           High water mark (bytes)                 = 10092544
           Configured size (bytes)                 = 4292870144
    KIndly suggest me where i m getting wrong.
    REgards

    Dear Sir,
           Please check the DB2DART log
    Command line output:
    C:\Users\Administrator.MAXXMOBILEDLH>db2dart db2smn /CHST /WHAT DBBP OFF
                        DB2DART Processing completed with error!
                            Complete DB2DART report found in:
    C:\PROGRAMDATA\IBM\DB2\DB2COPY1\DB2\DART0000\DB2SMN.RPT
    db2smn.rpt:
    Error: Failed sqledosd API on open system database directory.
    SQL1057W  The system database directory is empty.
    Error: This phase encountered an error and did not complete.
                        DB2DART Processing completed with error!
                                      WARNING:                       
                        The inspection phase did not complete!        
                            Complete DB2DART report found in:
    C:\PROGRAMDATA\IBM\DB2\DB2COPY1\DB2\DART0000\DB2SMN.RPT
        _______    D A R T    P R O C E S S I N G    C O M P L E T E    _______"
    Please help me to sort out this issue!!
    Our Solution Manager is down.
    Regards!!!

  • Database not found/Error: ORA-16621: database name for ADD DATABASE must be

    I am new to Data Guard and am trying to set up Data Guard Broker. I had created a configuration file with both my primary and standby databases and at one time I could show both databases. But now I can no longer show the standby database nor can I enable, disable or reinstate it. Here is what I have:
    Primary Database: orcl10g
    Standby Database: 10gSB
    DGMGRL> show configuration
    Configuration
    Name: orcl10g
    Enabled: YES
    Protection Mode: MaxPerformance
    Fast-Start Failover: DISABLED
    Databases:
    orcl10g - Primary database
    10gSB - Physical standby database
    Current status for "orcl10g":
    SUCCESS
    DGMGRL> show database verbose orcl10g
    Database
    Name: orcl10g
    Role: PRIMARY
    Enabled: YES
    Intended State: ONLINE
    Instance(s):
    orcl10g
    Properties:
    InitialConnectIdentifier = 'orcl10g'
    LogXptMode = 'ASYNC'
    Dependency = ''
    DelayMins = '0'
    Binding = 'OPTIONAL'
    MaxFailure = '0'
    MaxConnections = '1'
    ReopenSecs = '300'
    NetTimeout = '180'
    LogShipping = 'ON'
    PreferredApplyInstance = ''
    ApplyInstanceTimeout = '0'
    ApplyParallel = 'AUTO'
    StandbyFileManagement = 'AUTO'
    ArchiveLagTarget = '0'
    LogArchiveMaxProcesses = '30'
    LogArchiveMinSucceedDest = '1'
    DbFileNameConvert = '10gSB, orcl10g'
    LogFileNameConvert = '/oracle/oracle/product/10.2.0/oradata/orcl10g/redo01.log, /oracle/oracle/product/10.2.0/oradata/10gSB/redo01.log, /oracle/oracle/product/10.2.0/oradata/orcl10g/redo02.log, /oracle/oracle/product/10.2.0/oradata/10gSB/redo02.log, /oracle/oracle/product/10.2.0/oradata/orcl10g/redo03.log, /oracle/oracle/product/10.2.0/oradata/10gSB/redo03.log'
    FastStartFailoverTarget = ''
    StatusReport = '(monitor)'
    InconsistentProperties = '(monitor)'
    InconsistentLogXptProps = '(monitor)'
    SendQEntries = '(monitor)'
    LogXptStatus = '(monitor)'
    RecvQEntries = '(monitor)'
    HostName = 'remarkable.mammothnetworks.com'
    SidName = 'orcl10g'
    LocalListenerAddress = '(ADDRESS=(PROTOCOL=tcp)(HOST=remarkable.mammothnetworks.com)(PORT=1521))'
    StandbyArchiveLocation = '/oracle/flash_recovery_area/orcl10g/archivelog'
    AlternateLocation = ''
    LogArchiveTrace = '1024'
    LogArchiveFormat = '%t_%s_%r.arc'
    LatestLog = '(monitor)'
    TopWaitEvents = '(monitor)'
    Current status for "orcl10g":
    SUCCESS
    DGMGRL> show database verbose 10gSB
    Object "10gsb" was not found
    DGMGRL>
    DGMGRL> remove database 10gSB
    Object "10gsb" was not found
    DGMGRL>
    DGMGRL> reinstate database 10gSB
    Object "10gsb" was not found
    DGMGRL>
    DGMGRL> enable database 10gSB
    Object "10gsb" was not found
    DGMGRL>
    DGMGRL> add database '10gSB' as
    connect identifier is 10gSB
    maintained as physical;Error: ORA-16621: database name for ADD DATABASE must be unique
    Failed.
    How can I get Data Guard to see the standby database correctly again?

    Thank you for the constructive feedback. I have been able to make progress on this issue.
    I did check the Data Guard Log files as you suggested. I did not find anything when I checked them before but this time I found the following:
    DG 2011-06-16-17:23:18 0 2 0 RSM detected log transport problem: log transport for database '10gSB' has the following error.
    DG 2011-06-16-17:23:18 0 2 0 RSM0: HEALTH CHECK ERROR: ORA-16737: the redo transport service for standby database "10gSB" has an error
    DG 2011-06-16-17:23:18 0 2 0 NSV1: Failed to connect to remote database 10gSB. Error is ORA-12514
    DG 2011-06-16-17:23:18 0 2 0 RSM0: Failed to connect to remote database 10gSB. Error is ORA-12514
    DG 2011-06-16-17:23:18 0 2 753988034 Operation CTL_GET_STATUS cancelled during phase 2, error = ORA-16778
    DG 2011-06-16-17:23:18 0 2 753988034 Operation CTL_GET_STATUS cancelled during phase 2, error = ORA-16778
    I verified that I am able to connect to both the primary and standby databases via external connections:
    -bash-3.2$ lsnrctl status
    LSNRCTL for Linux: Version 10.2.0.1.0 - Production on 17-JUN-2011 12:41:03
    Copyright (c) 1991, 2005, Oracle. All rights reserved.
    Connecting to (ADDRESS=(PROTOCOL=tcp)(HOST=)(PORT=1521))
    STATUS of the LISTENER
    Alias LISTENER
    Version TNSLSNR for Linux: Version 10.2.0.1.0 - Production
    Start Date 17-JUN-2011 01:40:30
    Uptime 0 days 11 hr. 0 min. 32 sec
    Trace Level off
    Security ON: Local OS Authentication
    SNMP OFF
    Listener Parameter File /oracle/oracle/product/10.2.0/db_1/network/admin/listener.ora
    Listener Log File /oracle/oracle/product/10.2.0/db_1/network/log/listener.log
    Listening Endpoints Summary...
    (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=remarkable.mammothnetworks.com)(PORT=1521)))
    Services Summary...
    Service "10gSB" has 1 instance(s).
    Instance "10gSB", status READY, has 1 handler(s) for this service...
    Service "10gSB_DGB" has 1 instance(s).
    Instance "10gSB", status READY, has 1 handler(s) for this service...
    Service "10gSB_XPT" has 1 instance(s).
    Instance "10gSB", status READY, has 1 handler(s) for this service...
    Service "PLSExtProc" has 1 instance(s).
    Instance "PLSExtProc", status UNKNOWN, has 1 handler(s) for this service...
    Service "orcl10g" has 1 instance(s).
    Instance "orcl10g", status READY, has 1 handler(s) for this service...
    Service "orcl10gXDB" has 1 instance(s).
    Instance "orcl10g", status READY, has 1 handler(s) for this service...
    Service "orcl10g_DGB" has 1 instance(s).
    Instance "orcl10g", status READY, has 1 handler(s) for this service...
    Service "orcl10g_XPT" has 1 instance(s).
    Instance "orcl10g", status READY, has 1 handler(s) for this service...
    The command completed successfully
    -bash-3.2$
    -bash-3.2$
    -bash-3.2$ sqlplus system/dbas4ever@orcl10g
    SQL*Plus: Release 10.2.0.1.0 - Production on Fri Jun 17 12:43:41 2011
    Copyright (c) 1982, 2005, Oracle. All rights reserved.
    Connected to:
    Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - 64bit Production
    With the Partitioning, OLAP and Data Mining options
    SQL> quit
    Disconnected from Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - 64bit Production
    With the Partitioning, OLAP and Data Mining options
    -bash-3.2$ sqlplus system/dbas4ver@10gSB
    SQL*Plus: Release 10.2.0.1.0 - Production on Fri Jun 17 12:43:59 2011
    Copyright (c) 1982, 2005, Oracle. All rights reserved.
    ERROR:
    ORA-01033: ORACLE initialization or shutdown in progress <== I think this is normal since the database is in mount mode
    Enter user-name:
    I also checked the listener log file and did see and error associated with a known bug:
    WARNING: Subscription for node down event still pending
    So I added the following to the listener.ora file and bounced the listener:
    SUBSCRIBE_FOR_NODE_DOWN_EVENT_LISTENER=OFF
    That seems to have taken care of the error.
    The following is my listener.ora file:
    SID_LIST_LISTENER =
    (SID_LIST =
    (SID_DESC =
    (SID_NAME = PLSExtProc)
    (ORACLE_HOME = /oracle/oracle/product/10.2.0/db_1)
    (PROGRAM = extproc)
    (SID_DESC = ( GLOBAL_DBNAME = 10gsb_DGMGRL.remarkable.mammothnetworks.com )
    ( SERVICE_NAME = 10gsb.remarkable.mammothnetworks.com )
    ( SID_NAME = 10gsb )
    ( ORACLE_HOME = /oracle/oracle/product/10.2.0/db_1 )
    (SID_DESC = ( GLOBAL_DBNAME = orcl10g_DGMGRL.remarkable.mammothnetworks.com )
    ( SERVICE_NAME = orcl10g.remarkable.mammothnetworks.com )
    ( SID_NAME = orcl10g )
    ( ORACLE_HOME = /oracle/oracle/product/10.2.0/db_1 )
    (SID_DESC = ( GLOBAL_DBNAME = orcl10g.remarkable.mammothnetworks.com )
    ( SERVICE_NAME = orcl10g.remarkable.mammothnetworks.com )
    ( SID_NAME = orcl10g )
    ( ORACLE_HOME = /oracle/oracle/product/10.2.0/db_1 )
    (SID_DESC = ( GLOBAL_DBNAME = 10gsb.remarkable.mammothnetworks.com )
    ( SERVICE_NAME = 10gsb.remarkable.mammothnetworks.com )
    ( SID_NAME = 10gsb )
    ( ORACLE_HOME = /oracle/oracle/product/10.2.0/db_1 )
    SUBSCRIBE_FOR_NODE_DOWN_EVENT_LISTENER=OFF
    I again tried connecting externally to the standby database:
    -bash-3.2$ sqlplus system/dbas4ever@10gSB
    SQL*Plus: Release 10.2.0.1.0 - Production on Fri Jun 17 13:09:00 2011
    Copyright (c) 1982, 2005, Oracle. All rights reserved.
    ERROR:
    ORA-01033: ORACLE initialization or shutdown in progress
    Enter user-name:
    and see this in the listener.log file:
    17-JUN-2011 13:10:22 * (CONNECT_DATA=(SERVICE_NAME=10gSB_XPT)(SERVER=dedicated)(CID=(PROGRAM=oracle)(HOST=remarkable.mammothnetworks.com)(USER=oracle))) * (ADDRESS=(PROTOCOL=tcp)(HOST=199.187.124.130)(PORT=11357)) * establish * 10gSB_XPT * 0
    17-JUN-2011 13:10:22 * (CONNECT_DATA=(SERVICE_NAME=10gSB_XPT)(SERVER=dedicated)(CID=(PROGRAM=oracle)(HOST=remarkable.mammothnetworks.com)(USER=oracle))) * (ADDRESS=(PROTOCOL=tcp)(HOST=199.187.124.130)(PORT=11358)) * establish * 10gSB_XPT * 0
    17-JUN-2011 13:10:24 * service_update * 10gSB * 0
    17-JUN-2011 13:10:30 * (CONNECT_DATA=(SID=orcl10g)(CID=(PROGRAM=perl)(HOST=remarkable.mammothnetworks.com)(USER=oracle))) * (ADDRESS=(PROTOCOL=tcp)(HOST=127.0.0.1)(PORT=25119)) * establish * orcl10g * 0
    17-JUN-2011 13:10:30 * (CONNECT_DATA=(SID=orcl10g)(CID=(PROGRAM=perl)(HOST=remarkable.mammothnetworks.com)(USER=oracle))) * (ADDRESS=(PROTOCOL=tcp)(HOST=127.0.0.1)(PORT=25120)) * establish * orcl10g * 0
    17-JUN-2011 13:10:30 * (CONNECT_DATA=(SID=orcl10g)(CID=(PROGRAM=emagent)(HOST=localhost.localdomain)(USER=oracle))) * (ADDRESS=(PROTOCOL=tcp)(HOST=127.0.0.1)(PORT=25121)) * establish * orcl10g * 0
    17-JUN-2011 13:11:22 * (CONNECT_DATA=(SERVICE_NAME=10gSB_XPT)(SERVER=dedicated)(CID=(PROGRAM=oracle)(HOST=remarkable.mammothnetworks.com)(USER=oracle))) * (ADDRESS=(PROTOCOL=tcp)(HOST=199.187.124.130)(PORT=11420)) * establish * 10gSB_XPT * 0
    17-JUN-2011 13:11:22 * (CONNECT_DATA=(SERVICE_NAME=10gSB_XPT)(SERVER=dedicated)(CID=(PROGRAM=oracle)(HOST=remarkable.mammothnetworks.com)(USER=oracle))) * (ADDRESS=(PROTOCOL=tcp)(HOST=199.187.124.130)(PORT=11422)) * establish * 10gSB_XPT * 0
    17-JUN-2011 13:11:24 * service_update * 10gSB * 0
    I tried again to see the database in Data Guard Broker:
    DGMGRL> show database 10gSB
    Object "10gsb" was not found
    however, I then was able to add the database in Data Guard Broker:
    DGMGRL> add database 10gSB
    as connect identifier is 10gSB
    maintained as physical;Database "10gsb" added <== this is progress!!!
    However the configuration shows the following:
    DGMGRL> show database 10gSB
    Database
    Name: 10gsb
    Role: PHYSICAL STANDBY
    Enabled: NO
    Intended State: OFFLINE
    Instance(s):
    10gSB
    Current status for "10gsb":
    DISABLED <=====
    So I tried to enable the database:
    DGMGRL> enable database 10gSB
    Error: ORA-16626: failed to enable specified object
    Failed.
    and I tried to reinstate the database:
    DGMGRL> reinstate database 10gSB
    Reinstating database "10gsb", please wait...
    Error: ORA-16653: failed to reinstate database
    Failed.
    Reinstatement of database "10gsb" failed
    So I checked the configuration and now see two entries for the standby database but with case differences:
    DGMGRL> show configuration
    Configuration
    Name: orcl10g
    Enabled: YES
    Protection Mode: MaxPerformance
    Fast-Start Failover: DISABLED
    Databases:
    orcl10g - Primary database
    10gSB - Physical standby database
    10gsb - Physical standby database (disabled)
    Current status for "orcl10g":
    SUCCESS
    Question: How do I get rid of 10gSB and enable 10gsb?

  • Moving the 80 Million records from Conversion database to System Test database (Just for one transaction table) taking too long.

    Hello Friends,
    The background is I am working as conversion manager and we move the data from oracle to SQL Server using SSMA and then we will apply the conversion logic and then move the data to system test ,UAT and Production.
    Scenario:
    Moving the 80 Million records from Conversion database to System Test database (Just for one transaction table) taking too long. Both the databases are in the same server.
    Questions are…
    What is best option?
    IF we use the SSIS it’s very slow and taking 17 hours (some time it use to stuck and won’t allow us to do any process).
    I am using my own script (Stored procedure) and it’s taking only 1 hour 40 Min. I would like know is there any better process to speed up and why the SSIS is taking too long.
    When we move the data using SSIS do they commit inside after particular count? (or) is the Microsoft is committing all the records together after writing into Transaction Log
    Thanks
    Karthikeyan Jothi

    http://www.dfarber.com/computer-consulting-blog.aspx?filterby=Copy%20hundreds%20of%20millions%20records%20in%20ms%20sql
    Processing
    hundreds of millions records can be done in less than an hour.
    Best Regards,Uri Dimant SQL Server MVP,
    http://sqlblog.com/blogs/uri_dimant/
    MS SQL optimization: MS SQL Development and Optimization
    MS SQL Consulting:
    Large scale of database and data cleansing
    Remote DBA Services:
    Improves MS SQL Database Performance
    SQL Server Integration Services:
    Business Intelligence

  • Database logon failed. Database Vendor Error Code: 0

    Hi all,
    I'm running a java web application and use crystal report XI.
    It works normally. One thing is : i would like to change the "Connection URL" when runtime.
    These are my config:
    _CRConfig.xml :
    <?xml version="1.0" encoding="utf-8"?><CrystalReportEngine-configuration>
        <reportlocation>../..</reportlocation>
        <timeout>10</timeout>
        <ExternalFunctionLibraryClassNames>
              <classname> </classname>
              <classname> </classname>
        </ExternalFunctionLibraryClassNames>
    <keycode>B6W60-01CS200-00GEGC0-0EX1</keycode>
    <Javaserver-configuration>
    <DataDriverCommon>
         <JavaDir>C:\Business Objects\j2sdk1.4.2_08\bin</JavaDir>
        <Classpath>C:\Business Objects\Common\3.5\java/lib/crlovmanifest.jar;C:\Business Objects\Common\3.5\java/lib/CRLOVExternal.jar;C:\Business Objects\Common\3.5\java/lib/CRDBJavaServerCommon.jar;C:\Business Objects\Common\3.5\java/lib/CRDBJavaServer.jar;C:\Business Objects\Common\3.5\java/lib/CRDBJDBCServer.jar;C:\Business Objects\Common\3.5\java/lib/CRDBXMLServer.jar;C:\Business Objects\Common\3.5\java/lib/CRDBJavaBeansServer.jar;C:\Business Objects\Common\3.5\java/lib/external/CRDBXMLExternal.jar;C:\Business Objects\Common\3.5\java/lib/external/log4j.jar;C:\Business Objects\Common\3.5\java/lib/cecore.jar;C:\Business Objects\Common\3.5\java/lib/celib.jar;C:\Business Objects\Common\3.5\java/lib/ebus405.jar;C:\Business Objects\Common\3.5\java/lib/corbaidl.jar;C:\Business Objects\Common\3.5\java/lib/external/freessl201.jar;C:\Business Objects\Common\3.5\java/lib/external/asn1.jar;C:\Business Objects\Common\3.5\java/lib/external/certj.jar;C:\Program Files\Business Objects\Common\3.5\java/lib/external/jsafe.jar;C:\Business Objects\Common\3.5\java/lib/external/sslj.jar;C:\tomcat\common\lib\oracle-driver.jar${CLASSPATH}</Classpath>
         <IORFileLocation>${TEMP}</IORFileLocation>
         <JavaServerTimeout>1800</JavaServerTimeout>
         <JVMMaxHeap>256000000</JVMMaxHeap>
         <JVMMinHeap>32000000</JVMMinHeap>
         <NumberOfThreads>100</NumberOfThreads>
    </DataDriverCommon>
    <JDBC>
         <CacheRowSetSize>100</CacheRowSetSize>
         <JDBCURL>jdbc:mysql://Komodo-vmw:3306/warcraft</JDBCURL>
         <JDBCClassName>com.mysql.jdbc.Driver</JDBCClassName>
         <JDBCUserName>root</JDBCUserName>
         <JNDIURL></JNDIURL>
         <JNDIConnectionFactory></JNDIConnectionFactory>
         <JNDIInitContext>/</JNDIInitContext>
         <JNDIUserName>weblogic</JNDIUserName>
         <GenericJDBCDriver>
              <Default>
                   <ServerType>UNKNOWN</ServerType>
                   <QuoteIdentifierOnOff>ON</QuoteIdentifierOnOff>
                   <StoredProcType>Standard</StoredProcType>
                   <LogonStyle>Standard</LogonStyle>
              </Default>
              <Sybase>
                   <ServerType>SYBASE</ServerType>
                   <QuoteIdentifierOnOff>OFF</QuoteIdentifierOnOff>
                   <DriverClassName>com.sybase.jdbc2.jdbc.SybDriver</DriverClassName>
                   <StoredProcType>Standard</StoredProcType>
                   <LogonStyle>MySQL</LogonStyle>
              </Sybase>
         </GenericJDBCDriver>
    </JDBC>
    <XML>
         <CacheRowSetSize>100</CacheRowSetSize>
         <PreReadNBytes>4096</PreReadNBytes>
         <XMLLocalURL></XMLLocalURL>
         <SchemaLocalURL></SchemaLocalURL>
         <XMLHttpURL></XMLHttpURL>
         <SchemaHttpURL></SchemaHttpURL>
    </XML>
    <JavaBeans>
        <CacheRowSetSize>100</CacheRowSetSize>
         <JavaBeansClassPath></JavaBeansClassPath>
    </JavaBeans>
    </Javaserver-configuration>
    </CrystalReportEngine-configuration>
    _JSP file :
    public ConnectionInfos setLogon()  {
              String dbUser = "root";
              String dbPassword ="root";
              ConnectionInfos oConnectionInfos=null;
               try
                    //Create a new ConnectionInfos and ConnectionInfo object;
                    oConnectionInfos = new ConnectionInfos();
                  ConnectionInfo oConnectionInfo = new ConnectionInfo();
                  //Set username and password for the report's database
                  oConnectionInfo.setUserName(dbUser);
                  oConnectionInfo.setPassword(dbPassword);
              PropertyBag pro = new PropertyBag();
                  Map<String, String> bag = new HashMap<String, String>();
                   bag.put("Connection URL", "jdbc:mysql://Komodo-vmw:3306/warcraft");
                   bag.put("Server Type", "JDBC (JNDI)");
                   bag.put("Database DLL", "crdb_jdbc.dll");
                   bag.put("Database Class Name", "com.mysql.jdbc.Driver");
                  oConnectionInfo.setAttributes(new PropertyBag(bag));          
                  //Add object to collection
                  oConnectionInfos.add(oConnectionInfo);               
              } catch(Exception se) {
                   se.printStackTrace();
                   System.out.println("[error in setLogon ]");
              return oConnectionInfos;     
    And i got error every times i run the report :
    Database logon failed. Database Vendor Error Code: 0
    Please help me.Thank you so much!

    Hi quang.
    can u tell me how to solve this issue? on trying to open a report am facing this issue!
    TIA

  • Error when importing into 11.1 database from 10.2 database

    Hi everyone !
    I'm trying to import full database(10.2) into database 11g
    Before running Data Pump ,I had checked compability between 10.2 and 11.1 and Oracle says that they're supported .
    So I've used 10.2 expdp to export data from 10g database . Then I've used 11d impdp to import data into 11g database .
    but it's not working well .
    DATABASE_EXPORT/SYSTEM_PROCOBJACT/PRE_SYSTEM_ACTIONS/PROCACT_SYSTEM
    ORA-39083: Object type PROCACT_SYSTEM failed to create with error:
    ORA-20000: Incompatible version of Workspace Manager Installed
    Failing sql is:
    BEGIN
    declare ver varchar2(100) ; dummy integer; compile_exception EXCEPTION; PRAGMA EXCEPTION_INIT(compile_exception, -06550); invalid_table EXCEPTION; PRAGMA EXCEPTION_INIT(invalid_table, -00942); procedure createErrorProc is begin execute immediate 'create or replace function system.wm$_check_install return boolean is begin return true ; end;' ; end ; begin
    Processing object type DATABASE_EXPORT/SYSTEM_PROCOBJACT/POST_SYSTEM_ACTIONS/PROCACT_SYSTEM
    ORA-39083: Object type PROCACT_SYSTEM failed to create with error:
    ORA-06550: line 2, column 93:
    PLS-00302: component 'OPERATOR_NONE' must be declared
    AND ANOTHER ERROR
    ORA-39083: Object type PROCOBJ failed to create with error:
    ORA-06550: line 4, column 1:
    PLS-00103: Encountered the symbol "DECLARE COMMIT; END;
    " when expecting one of the following:
    ( - + case mod new not null <an identifier>
    <a double-quoted delimited-identifier> <a bind variable>
    continue avg count current exists max min prior sql stddev
    sum variance execute forall merge time timestamp interval
    date <a string literal with character set specification>
    <a number> <a single-quoted S
    ORA-39083: Object type PROCOBJ failed to create with error:
    ORA-06550: line 2, column 11:
    PLS-00103: Encountered the symbol "VARCHAR2" when expecting one of the following:
    := . ( @ % ;
    The symbol ":=" was substituted for "VARCHAR2" to continue.
    Can you please give me some advices ?
    Thanks
    Edited by: Tien Lai on 2009-okt-19 01:56

    Pl see if MOS Doc 730373.1 (ORA-39083 ORA-20000 Incompatible Version of Workspace Manager Installed) is applicable in your case
    HTH
    Srini

Maybe you are looking for

  • Multiple kernel panics after updating to Drobo Dashboard 2.6.3

    Hi, I had a Drobo 5D running fine on my system for several months, using Drobo Dashboard 2.6.2. A couple of days ago, I unfortunately decided to update to the latest version, 2.6.3, and immediately started getting random kernel panics. I tried severa

  • Error while opening MII login page

    Hello All, When I try to login to MII using http://<server name>/Lighthammer/Menu.jsp,It is going to http://<server name>/Lighthammer/error.jsp and displaying the error "Uanble to build user information for authorization response".I am not able to ev

  • Are Export DataSources always 3.x format? Can they be migrated to 7.0 DTP?

    Hi, I am extracting for a BW Export DataSource into a cube. It seems that when you generate an Export DataSource, the DataSource in 3.x format. I first created the ETL using the 3.x scenario. i.e Export DataSource->Transfer Rules->InfoSource->Update

  • Export and Import in Oracle

    I need to export users with tables and data from Oracle 8.0.4 and import into Oracle 8.1.7. But the condition is that we need to retain the Japanese characters. I did this using simple export and import functions but Japanese characters were imported

  • "Get  Info" function is very slow

    I have a 24" iMac (2.8 ghz core 2 duo, 4GB Ram) running 10.6.3. Anytime I select a file and choose "Get Info" from the right click menu, I get the dreaded spinning beach ball for approx 10 seconds before the file's info window is displayed. On this s