Opening a Q&A database

Hello,
I'm trying to make a program that convert Symantec Q&A databases to Access databases. Is there any way to do this? Symantec has quit giving support for Q&A and i couldn't find a document on the internet describing the file format. Is there a ODBC driver available for this?

Did you manage to find an answer to the problem of converting Q&A databases to Access? I am trying to do exactly the same thing or at least to least convert to a database format that I can use, such as Oracle. I would be very grateful if you have any advice.

Similar Messages

  • Opening and closing Access database in a loop causes an Error.

    I am loading test conditions from an Access DB in a multiple nested loop. The loops successively drill into the DB. ei Temperature, Humidity, Power. Consequently the DB is opened and closed numerous (2000) times. The Errors returned are(-2147467259) Unspecified Error or (2147024882) System Resources low. I have disabled result recording in the edit sequence properties dialog. I do see a constant memory consumption, but of 128MB, it never gets below 40MB. I have enclosed the example sequence file I am using.
    Attachments:
    Open-Close.seq ‏35 KB

    Jacy,
    "jacy" wrote in message
    news:[email protected]..
    > I am loading test conditions from an Access DB in a multiple nested
    > loop. The loops successively drill into the DB. ei Temperature,
    > Humidity, Power. Consequently the DB is opened and closed numerous
    > (2000) times. The Errors returned are(-2147467259) Unspecified Error
    > or (2147024882) System Resources low. I have disabled result recording
    > in the edit sequence properties dialog. I do see a constant memory
    > consumption, but of 128MB, it never gets below 40MB. I have enclosed
    > the example sequence file I am using.
    I've seen problems with OLEDB (which I assume TestStand used behind the
    scenes) with Access and SQL where rapid opening/closing of the sam
    e source
    (database) can generate errors. I don't know for sure, but I assume that
    the changes from the last close are not fully propogated before the next
    open is processed.
    Getting back to TestStand, if all the tables you're querying are in the same
    database, then you should just open the database once at the beginning and
    close it at the end. Then do seperate table open/closes between the
    database open/close.
    Bob.

  • Best Policy to run open queries on LIVE Database

    Hi Experts,
    There are users who has RO access on Live database , they run open queries on Live database. Sometimes we have faced some issues on Live Database due to open queries and we can not restrict them to run as well. So would like to get your suggestion
    to come up with best solutions ? 
    Shivraj Patil.

    What issue do you have? One option is tuning the query, means create proper indexes to speed up the query..
    But  the user may run heavy query even being unaware  that system consumes resources, for example
    --A typical parallel query...
    SELECT 
        p.ProductId, 
        p.ProductNumber,
        p.ReorderPoint,
        th.TransactionId,
        RANK() OVER 
            PARTITION BY
                p.ProductId
            ORDER BY
                th.ActualCost DESC
        ) AS LineTotalRank,
        RANK() OVER
            PARTITION BY
                p.ProductId
            ORDER BY 
                th.Quantity DESC
        ) AS OrderQtyRank
    FROM bigProduct AS p
    INNER JOIN bigTransactionHistory AS th ON
        th.ProductId = p.ProductId
    WHERE
    p.ProductId BETWEEN 1001 AND 5001
    GO 
    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

  • Palm Desktop software - Fails to open with msg "Error: Failed to open To Do List database"

    In July 2009 I dropped my trusty Visor on a tile floor and it stopped working.  So, in the meantime I have been using only the Palm Desktop software. 
     Just a couple days ago, when I attempted to launch the Palm Desktop software, it failed with the message “Error: Failed to open To Do List database”.  I think this error may have been caused by a very ungraceful shut-down of my Win XP system the day before. 
     I really don’t care about the To Do List data since I really don’t use it --- in fact, I haven’t used it in many months.  However, I really do need to use the Palm Desktop software for my contacts, calendar, and memo.  The problem is that the error with the To Do List database seems to be preventing the Palm Desktop software from initializing.
     Just guessing, I saved the todo.dat and todo.bak files by renaming them, and then renamed the todo.bak file to todo.dat.  Then I attempted to launch the Palm Desktop application, but it failed with the same error “Error: Failed to open To Do List database”.
     I also tried renaming all of the todo files so that none had a name of todo.dat or todo.bak.  The result is that the Palm Desktop software still will not start up. 
     I think I am using Palm Desktop 4.0.1, at least that is what the help text file seems to tell me.
     I am grateful for any assistance.  Thank you.
    Post relates to: Visor Deluxe
    Post relates to: Visor Deluxe

    Your on the correct path by saving the data by renaming the files. But to resolve this error we need to remove the data all together. Since you no longer need this data if you just delete it then it should not matter. If Palm Desktop is giving this error but will not open I doubt that the data can be recovered in any event.

  • Oracle Open World 2012会发布Oracle Database 12c吗?

    Oracle Open World 2012会发布Oracle Database 12c吗? 大家讨论一下!

    我的感觉不会发布, 仅仅是感觉,没有任何资料证明这种观点。
    似乎12c的完成度还不是非常高

  • Failed to open the connection.Details: [Database Vendor Code: 17 ]

    We have too many reports designed by Crystal Reports XI Release 2 a time ago reports are old but we are calling them in asp.net 4.0 and connection through ODBC Data Sources (Driver SQL SERVER)
    but when we refresh the report we are facing this issue....
    Failed to open the connection.
    Details: [Database Vendor Code: 17 ] Failed to open the connection.
    AP Outstanding Check Run Detailed Ver 2 {CF3B13A2-F259-4B1D-ACC9-BF78F44D4AA5}.rpt
    Details: [Database Vendor Code: 17 ]
    here is the code to set ReportLoginInfo
    CrystalDecisions.Shared.TableLogOnInfo logonInfo = new CrystalDecisions.Shared.TableLogOnInfo();
                string myTableLocation;
                foreach (CrystalDecisions.CrystalReports.Engine.Table myTable in rptDoc.Database.Tables)
                    myTableLocation = myTable.Name;
                    logonInfo = myTable.LogOnInfo;
                    logonInfo.ConnectionInfo.AllowCustomConnection = true;
                    logonInfo.ConnectionInfo.ServerName = ServerName; // dnsname
                    logonInfo.ConnectionInfo.DatabaseName = DatabaseName;
                    if (!(string.IsNullOrEmpty(UserID) || string.IsNullOrEmpty(Password)))
                        logonInfo.ConnectionInfo.UserID = UserID;
                        logonInfo.ConnectionInfo.Password = Password;
                        logonInfo.ConnectionInfo.IntegratedSecurity = false;
                    logonInfo.ConnectionInfo.Type = CrystalDecisions.Shared.ConnectionInfoType.SQL;
                    myTable.ApplyLogOnInfo(logonInfo);
                    myTable.Location = DatabaseName + ".dbo." + myTableLocation;
                    bool success = myTable.TestConnectivity();
    Edited by: zeshansadiq on Nov 4, 2011 3:49 PM

    resolved by me itself.
    Do the following steps:
    1. Open the report in the CR XI designer.
    2. Select Database -> Set Datasource Location.
    3. Set Datasource Location window will appear and in the replace with section connect to the database and replace these tables with the tables in the current datasource by clicking the update button.
    4. After updating close the Set Datasource Location window.
    5. Go to 'Database menu' and Click 'Verify Database' and click on u2019OKu2019.
    6. Preview the report and the save the report.

  • SQL Server wants to open properties of wrong database and cannot restore logs of different databases at the same time

    We have implemented our own way of logshipping by backing up the transaction logs of all our non-system databases every hour. Then we transfer the backups (before SQL Server 2008 R2 with additional zip and unzip steps) to the second environment where we
    restore them only during the night on databases in standby-state (Like this, our developers can access the databases without disturbing the productive system and we can restore the t-logs during night, so not shutting out the developers during the day).
    Now since we replaced our hardware in the productive environment, we replaced the hardware in the second environment with the servers from previous productive environment. Same SQL Server 2008 R2, same Service Pack (SP2), same installation procedure. But
    since then the SQL Server in the second environment behaves different:
    - When the logs of some database "A" are restored, I cannot access the properties of any database, i.e. database "B", I only get the error message "Cannot show requested dialog. (SqlMgmt) Database 'A' cannot be opened. It is in the
    middle of a restore. (Microsoft SQL Server, Error: 927)"
    - Our logshipping runs multiple instance at the same time, so restoring multiple databases' logs. But since the change, two of the instances fail restoring of datatbases, i.e. "B" and "C" with the error message "Database 'A' cannot
    be opened. It is in the middle of a restore.". The jobs guarantee to restore only logs of the database they need to restore, they have strictly separated sets of target databases and only try to restore the databases of their sets.
    Before the new installations, we did not have these strange behaviours. But as said, it is the same SQL Server version, the same service pack, and we followed the same installation document but maybe with the small changes in settings. The user the jobs
    are running under is a domain admin, the login they use has dbcreator, processadmin, db_owner and db_backupoperator roles. My login on the SQL Server has sysadmin rights and as described similar problems.
    Is this problem known or does somebody have an idea where to go looking for?
    Thanks, Chris

    Hi Christar,
    According to your description, after you configuring Log shipping between two database, you remove the hardware from production environment to dev environment, in this hardware, there are saved the transaction logs of your database.
     When restoring  your database, there will occurs error 927, right?
    SQL Server Log shipping allows you to automatically send transaction log backups from a
    primary database on a primary server instance to one or more
    secondary databases on separate secondary server instances. It consists of three operations:
    1.Back up the transaction log at the primary server instance.
    2.Copy the transaction log file to the secondary server instance.
    3.Restore the log backup on the secondary server instance.
    Since you want to move your hardware avoiding copy job, we need to verify if .mdf and .ldf file are not saved in your hardware, or else,
     if you move your hardware, you could not open your database in your Primary Server. I recommend you can refer to the following steps.
    Full back up your primary database and restore it into the secondary database. It would have been set up as WITH STANDBY ,the databases would read StandBy/ Read Only.
    Perform transaction log backups via a SQL Server Agent job running on the primary server instance, save them in your hardware.
    In night, you move hardware to your dev environment, you can manually restore these transaction log backups or set up a SQL Server Agent job to restoring them from your hardware.
    There is detail about how to configure log shipping in SQL Server 2008R2 step by step, you can review it.
    http://mostafaelmasry.wordpress.com/2013/01/02/log-shipping-in-sql-server-2008r2-step-by-step/
    Regards,
    Sofiya Li
    Sofiya Li
    TechNet Community Support

  • Opening an MS Access Database

    I have an app that attempts to "launch" MS Access and open a
    database. MS Access is starting up successfully, but the user is
    presented, by MS Access a message that reads "You do not have
    exclusive access to the database at this time. If you proceed to
    make changes, you may not be able to save them later." - I am using
    cflocation to launch ms access with the selected database file.
    What might I be doing to cause this message to appear and what is
    the best way to open a database launch the ms access application
    through my cf app. I have verified the obvious that another user
    might have the file open at the time we attempt to access the
    database, and we are the only process accessing the file at that
    time.
    Any help would be greatly appreciated.
    Craig

    yikes.
    yes, this does help. but, first of all, this is probably a
    bad time to be building these types of apps. 5 years ago, it would
    have been fine, but, between IE 7 and future browsers, you will
    probably begin to run into security issues. plus, depending on how
    network security is in this domain, priviledges would need to be
    set up in order to let the web server access this file system. in
    which case gives any user that access the app the access to this
    file system. but, only to view and print. any saving would have to
    be done on the local machine unless the user has access to the file
    dir in which case would have to navigate back to it. also, i hope
    it isnt exposed to the www which would be an easy target for
    hackers to destroy/steal that stuff.
    now, if the user already has access to this file system, why
    not just use a link like \\myserver\share which would open the file
    system up? or make the link \\myserver\share\thedatabase.mdb

  • Problem to open the oracle XE Database

    Log file name :  oxe_backup_current.log
    XE Backup Log
    Recovery Manager: Release 10.2.0.1.0 - Production on Mon Sep 12 04:26:21 2011
    Copyright (c) 1982, 2005, Oracle. All rights reserved.
    connected to target database: XE (DBID=2619028465, not open)
    RMAN>
    echo set on
    RMAN> shutdown immediate;
    using target database control file instead of recovery catalog
    database dismounted
    Oracle instance shut down
    RMAN> startup mount;
    connected to target database (not started)
    Oracle instance started
    database mounted
    Total System Global Area 805306368 bytes
    Fixed Size 1261444 bytes
    Variable Size 213909628 bytes
    Database Buffers 587202560 bytes
    Redo Buffers 2932736 bytes
    RMAN> configure retention policy to redundancy 2;
    old RMAN configuration parameters:
    CONFIGURE RETENTION POLICY TO REDUNDANCY 2;
    new RMAN configuration parameters:
    CONFIGURE RETENTION POLICY TO REDUNDANCY 2;
    new RMAN configuration parameters are successfully stored
    RMAN> configure controlfile autobackup format for device type disk clear;
    RMAN configuration parameters are successfully reset to default value
    RMAN> configure controlfile autobackup on;
    old RMAN configuration parameters:
    CONFIGURE CONTROLFILE AUTOBACKUP OFF;
    new RMAN configuration parameters:
    CONFIGURE CONTROLFILE AUTOBACKUP ON;
    new RMAN configuration parameters are successfully stored
    RMAN> sql "create pfile=''/usr/lib/oracle/xe/app/oracle/product/10.2.0/server/dbs/spfile2init.ora'' from spfile";
    sql statement: create pfile=''/usr/lib/oracle/xe/app/oracle/product/10.2.0/server/dbs/spfile2init.ora'' from spfile
    RMAN> backup as backupset device type disk database;
    Starting backup at 12-SEP-11
    allocated channel: ORA_DISK_1
    channel ORA_DISK_1: sid=102 devtype=DISK
    channel ORA_DISK_1: starting full datafile backupset
    channel ORA_DISK_1: specifying datafile(s) in backupset
    input datafile fno=00003 name=/usr/lib/oracle/xe/oradata/XE/sysaux.dbf
    input datafile fno=00005 name=/usr/lib/oracle/xe/oradata/XE/ftress_data_log01.dbf
    input datafile fno=00006 name=/usr/lib/oracle/xe/oradata/XE/ftress_data_lrg01.dbf
    input datafile fno=00001 name=/usr/lib/oracle/xe/oradata/XE/system.dbf
    input datafile fno=00009 name=/usr/lib/oracle/xe/oradata/XE/ftress_indx_log01.dbf
    input datafile fno=00010 name=/usr/lib/oracle/xe/oradata/XE/ftress_indx_lrg01.dbf
    input datafile fno=00002 name=/usr/lib/oracle/xe/oradata/XE/undo.dbf
    input datafile fno=00004 name=/usr/lib/oracle/xe/oradata/XE/users.dbf
    input datafile fno=00008 name=/usr/lib/oracle/xe/oradata/XE/ftress_data_sml01.dbf
    input datafile fno=00012 name=/usr/lib/oracle/xe/oradata/XE/ftress_indx_sml01.dbf
    input datafile fno=00011 name=/usr/lib/oracle/xe/oradata/XE/ftress_indx_mdm01.dbf
    input datafile fno=00007 name=/usr/lib/oracle/xe/oradata/XE/ftress_data_mdm01.dbf
    channel ORA_DISK_1: starting piece 1 at 12-SEP-11
    channel ORA_DISK_1: finished piece 1 at 12-SEP-11
    piece handle=/usr/lib/oracle/xe/app/oracle/flash_recovery_area/XE/backupset/2011_09_12/o1_mf_nnndf_TAG20110912T042633_76vjksws_.bkp tag=TAG20110912T042633 comment=NONE
    channel ORA_DISK_1: backup set complete, elapsed time: 00:00:15
    Finished backup at 12-SEP-11
    Starting Control File and SPFILE Autobackup at 12-SEP-11
    piece handle=/usr/lib/oracle/xe/app/oracle/flash_recovery_area/XE/autobackup/2011_09_12/o1_mf_s_761631122_76vjl97m_.bkp comment=NONE
    Finished Control File and SPFILE Autobackup at 12-SEP-11
    RMAN> configure controlfile autobackup off;
    old RMAN configuration parameters:
    CONFIGURE CONTROLFILE AUTOBACKUP ON;
    new RMAN configuration parameters:
    CONFIGURE CONTROLFILE AUTOBACKUP OFF;
    new RMAN configuration parameters are successfully stored
    RMAN> alter database open;
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03002: failure of alter db command at 09/12/2011 04:26:51
    ORA-00322: log 1 of thread 1 is not current copy
    ORA-00312: online log 1 thread 1: '/usr/lib/oracle/xe/app/oracle/flash_recovery_area/XE/onlinelog/o1_mf_1_6jmmyqk8_.log'
    RMAN> delete noprompt obsolete;
    RMAN retention policy will be applied to the command
    RMAN retention policy is set to redundancy 2
    using channel ORA_DISK_1
    Deleting the following obsolete backups and copies:
    Type Key Completion Time Filename/Handle
    Backup Set 3 12-SEP-11
    Backup Piece 3 12-SEP-11 /usr/lib/oracle/xe/app/oracle/flash_recovery_area/XE/backupset/2011_09_12/o1_mf_nnndf_TAG20110912T040202_76vh3v58_.bkp
    Backup Set 4 12-SEP-11
    Backup Piece 4 12-SEP-11 /usr/lib/oracle/xe/app/oracle/flash_recovery_area/XE/autobackup/2011_09_12/o1_mf_s_761630513_76vh4yjx_.bkp
    Backup Set 5 12-SEP-11
    Backup Piece 5 12-SEP-11 /usr/lib/oracle/xe/app/oracle/flash_recovery_area/XE/backupset/2011_09_12/o1_mf_nnndf_TAG20110912T040908_76vhk4n6_.bkp
    Backup Set 6 12-SEP-11
    Backup Piece 6 12-SEP-11 /usr/lib/oracle/xe/app/oracle/flash_recovery_area/XE/autobackup/2011_09_12/o1_mf_s_761630513_76vhkmyg_.bkp
    RMAN-06207: WARNING: 4 objects could not be deleted for DISK channel(s) due
    RMAN-06208: to mismatched status. Use CROSSCHECK command to fix status
    RMAN-06210: List of Mismatched objects
    RMAN-06211: ==========================
    RMAN-06212: Object Type Filename/Handle
    RMAN-06213: --------------- ---------------------------------------------------
    RMAN-06214: Backup Piece /usr/lib/oracle/xe/app/oracle/flash_recovery_area/XE/backupset/2011_09_12/o1_mf_nnndf_TAG20110912T040202_76vh3v58_.bkp
    RMAN-06214: Backup Piece /usr/lib/oracle/xe/app/oracle/flash_recovery_area/XE/autobackup/2011_09_12/o1_mf_s_761630513_76vh4yjx_.bkp
    RMAN-06214: Backup Piece /usr/lib/oracle/xe/app/oracle/flash_recovery_area/XE/backupset/2011_09_12/o1_mf_nnndf_TAG20110912T040908_76vhk4n6_.bkp
    RMAN-06214: Backup Piece /usr/lib/oracle/xe/app/oracle/flash_recovery_area/XE/autobackup/2011_09_12/o1_mf_s_761630513_76vhkmyg_.bkp
    RMAN>
    Recovery Manager complete.
    RMAN error: See log for details.
    An error also comes out while opening the database through SQL statement
    SQL> connect sys as sysdba
    Enter password:
    Connected.
    SQL> shutdown immediate;
    ORA-01109: database not open
    Database dismounted.
    ORACLE instance shut down.
    SQL> startup
    ORACLE instance started.
    Total System Global Area 805306368 bytes
    Fixed Size 1261444 bytes
    Variable Size 213909628 bytes
    Database Buffers 587202560 bytes
    Redo Buffers 2932736 bytes
    Database mounted.
    ORA-00322: log 1 of thread 1 is not current copy
    ORA-00312: online log 1 thread 1:
    *'/usr/lib/oracle/xe/app/oracle/flash_recovery_area/XE/onlinelog/o1_mf_1_6jmmyqk8_.log'*
    SQL>
    Its an error (problem) of our DC ( Primary) Sever so Please reply back with suitable answer as soon as possible
    Regards,
    Niraj Prasad Karn
    Edited by: 870614 on Sep 14, 2011 10:38 AM

    I suggest you transfer this threat to a different forum, as this is the OEM GC forum.
    I guess you want to post in the Database forum.
    Regards
    Rob
    http://oemgc.wordpress.com

  • Does not open Web interface EM Database Control

    Oracle Enterprise Manager 11g Database Control Release 11.2.0.1.0
    Agent is running, dbconsole too.
    to the database through SQL Developer and SQL Plus connects.
    when you go to localhost:1158/em opens a BLANK PAGE that contains 2 "squiggles" view"|[ ]]"
    tried in different browsers, identical.
    a feeling that most web interface is physically not in folders Oracle or what could be the problem, tell me please?

    Oracle Enterprise Manager 11g Database Control Release 11.2.0.1.0
    Agent is running, dbconsole too.
    to the database through SQL Developer and SQL Plus connects.
    when you go to localhost:1158/em opens a BLANK PAGE that contains 2 "squiggles" view"|[ ]]"
    tried in different browsers, identical.
    a feeling that most web interface is physically not in folders Oracle or what could be the problem, tell me please?

  • Open 10g/11g RAC database in Non RAC Mode

    Dear Friends,
    How i open 10g and 11g RAC database in Non RAC Mode (open single instance in order to perform upgrade)
    Later i will convert the upgraded DB to RAC DB
    Regards,
    DB

    user564706 wrote:
    Dear Friends,
    How i open 10g and 11g RAC database in Non RAC Mode (open single instance in order to perform upgrade)
    Later i will convert the upgraded DB to RAC DB
    Regards,
    DBEdit spfile and set cluster_database=false before starting database in upgrade mode(optionally you can unset other cluster parameters).
    So you upgrade using only 1 instance of database.
    Once the upgrade is finished start the other instance as well and set cluster_database=true
    Also see preupgrade process - http://docs.oracle.com/cd/E11882_01/server.112/e23633/upgrade.htm#i1011979
    Post upgrade -> http://docs.oracle.com/cd/E11882_01/server.112/e23633/afterup.htm#CEGCFJJC

  • DB can not open after renaming the database name

    Hi all,
    I wanted to change the db name so i created new controlfile with trace and set it as.I have created controlfile successfully,my db opened successfully but when i shut it down and again tried it to open i saw below error message
    CREATE CONTROLFILE SET DATABASE "db2" RESETLOGS NOARCHIVELOG
    MAXLOGFILES 16
    MAXLOGMEMBERS 3
    MAXDATAFILES 100
    MAXINSTANCES 8
    MAXLOGHISTORY 292
    LOGFILE
    GROUP 1 'C:\ORACLE\PRODUCT\10.2.0\ORADATA\db2\REDO01.LOG' SIZE 50M,
    GROUP 2 'C:\ORACLE\PRODUCT\10.2.0\ORADATA\db2\REDO02.LOG' SIZE 50M,
    GROUP 3 'C:\ORACLE\PRODUCT\10.2.0\ORADATA\db2\REDO03.LOG' SIZE 50M
    -- STANDBY LOGFILE
    DATAFILE
    'C:\ORACLE\PRODUCT\10.2.0\ORADATA\db2\SYSTEM01.DBF',
    'C:\ORACLE\PRODUCT\10.2.0\ORADATA\db2\UNDOTBS01.DBF',
    'C:\ORACLE\PRODUCT\10.2.0\ORADATA\db2\SYSAUX01.DBF',
    'C:\ORACLE\PRODUCT\10.2.0\ORADATA\db2\USERS01.DBF',
    'C:\ORACLE\PRODUCT\10.2.0\ORADATA\db2\DB2.DBF',
    'C:\ORACLE\PRODUCT\10.2.0\ORADATA\db2\DB21.DBF',
    'C:\ORACLE\PRODUCT\10.2.0\ORADATA\db2\DB211.DBF',
    'C:\ORACLE\PRODUCT\10.2.0\ORADATA\db2\DB212.DBF',
    'C:\ORACLE\PRODUCT\10.2.0\ORADATA\db2\DB213.DBF',
    'C:\ORACLE\PRODUCT\10.2.0\ORADATA\db2\DB214.DBF',
    'C:\ORACLE\PRODUCT\10.2.0\ORADATA\db2\DB215.DBF'
    CHARACTER SET WE8MSWIN1252;
    ALTER DATABASE OPEN RESETLOGS;
    SQL> @e:\creatdbdb2.sql;
    Control file created.
    Database altered.
    SQL> select file_name from dba_data_files;
    FILE_NAME
    C:\ORACLE\PRODUCT\10.2.0\ORADATA\db2\DB215.DBF
    C:\ORACLE\PRODUCT\10.2.0\ORADATA\db2\DB214.DBF
    C:\ORACLE\PRODUCT\10.2.0\ORADATA\db2\DB213.DBF
    C:\ORACLE\PRODUCT\10.2.0\ORADATA\db2\DB212.DBF
    C:\ORACLE\PRODUCT\10.2.0\ORADATA\db2\DB211.DBF
    C:\ORACLE\PRODUCT\10.2.0\ORADATA\db2\DB21.DBF
    C:\ORACLE\PRODUCT\10.2.0\ORADATA\db2\DB2.DBF
    C:\ORACLE\PRODUCT\10.2.0\ORADATA\db2\USERS01.DBF
    C:\ORACLE\PRODUCT\10.2.0\ORADATA\db2\SYSAUX01.DBF
    C:\ORACLE\PRODUCT\10.2.0\ORADATA\db2\UNDOTBS01.DBF
    C:\ORACLE\PRODUCT\10.2.0\ORADATA\db2\SYSTEM01.DBF
    11 rows selected.
    SQL> shutdown immediate;
    Database closed.
    Database dismounted.
    ORACLE instance shut down.
    SQL> startup;
    ORACLE instance started.
    Total System Global Area 612368384 bytes
    Fixed Size 1250428 bytes
    Variable Size 222301060 bytes
    Database Buffers 381681664 bytes
    Redo Buffers 7135232 bytes
    Database mounted.
    ORA-00313: open failed for members of log group 2 of thread 1
    ORA-00312: online log 2 thread 1:
    'C:\ORACLE\PRODUCT\10.2.0\DB_3\DATABASE\LOG2db2.ORA'
    ORA-27041: unable to open file
    OSD-04002: unable to open file
    O/S-Error: (OS 2) The system cannot find the file specified.

    my database is opening file now....but i have one Q i have already created init.ora for db2 database as initdb2.ora and given all controlfile location same....but why i was facing the issue? my olde initdb2.ora as below
    db_cache_size=436207616
    java_pool_size=4194304
    large_pool_size=4194304
    shared_pool_size=159383552
    streams_pool_size=0
    background_dump_dest='e:/db2/bdump'
    compatible='10.2.0.1.0'
    control_files='e:\db2\control01.ctl','e:\db2\control02.ctl','e:\db2\control03.ctl'
    core_dump_dest='e:\db2\cdump'
    db_block_size=8192
    db_file_multiblock_read_count=16
    db_name='db2'
    #db_recovery_file_dest='e:\db2\flash_recovery_area'
    db_recovery_file_dest_size=2147483648
    dispatchers='(PROTOCOL=TCP) (SERVICE=db2XDB)'
    job_queue_processes=10
    log_archive_format='ARC%S_%R.%T'
    open_cursors=300
    pga_aggregate_target=203423744
    processes=150
    remote_login_passwordfile='EXCLUSIVE'
    sga_target=612368384
    undo_management='AUTO'
    undo_tablespace='UNDOTBS1'
    user_dump_dest='e:\db2\udump'

  • Just installed Premiere and can not open a new project, database error

    Everytime I try to open a new project i get a Database is "Failed to perform the database operation as the Organizer database is busy.  Please try again later."
    Anyone had this problem yet?

    PatrickClay
    Of prime importance...what version of Premiere Elements are you working with and on what computer operating system is it running on?
    So, right now a lot of generalizations
    1. Close all opened projects and programs.
    2. Right click the Taskbar at the bottom of computer desktop to bring up Task Manager/Processes. Look for and End Process for any traces of Premiere Elements and/or Elements Organizer whose process remained opened after you closed the program.
    3. Open Premiere Elements to its Splash screen where hopefully you will see tabs for Organizer and Video Editor. Hold down the Ctrl+Alt+Shift keys of the computer main keyboard (altogether) as you do a left mouse click hold down on the Organizer tab for about 15 seconds. After that time, release just the mouse click hold down. Wait for a message about deleting the preferences/settings file. Click Yes to the message that should appear. Unhold the Ctrl+Alt+Shift, and then click on Organizer or Video Editor and try to open the Video Editor or Elements Organizer sections of the program without error.
    4. Did that work for you? If not, please supply more details.
    We are looking forward to your follow up with the outcome and getting your issue resolved.
    Thanks.
    ATR

  • Failed to open the connection. [Database Vendor Code:12154]

    I am brand new to Crystal Reports Server.  I am using Oracle as a database and 10g client on my XP workstations.  I keep getting this message.  I have my ODBC drivers loaded and tested for connection.  I have my Business View set up with the appropriate TNSNAMES.ora and login.  When I run any report, I get this message.  Can anyone tell me where my connection is broken?  It is driving me crazy!
    Thanks, Pam

    Edit: just realized I replied to a 3 years old thread...
    Though Crystal Reports is not my speciality, if you use Oracle, then I assume you are using the Oracle client as middleware, not ODBC, so that is more around the Oracle client you need to investigate rather than the ODBC. Tell me if I missed something here.
    Could you also clarify the OS you are implementing that solution on (32/64bits) and the connectivity you use from Business View (ODBC or Oracle client connectivity?)
    It also struck my mind that the DB vendor error code you get is around ORA-12154 "Could not resolve the connect identifier", which means you have a problem resolving the alias of the DB. This assumption seems to be confirmed by the fact it works from neither Crystal client nor the web interface.
    Edited by: Romain Anselin on Sep 28, 2010 1:57 PM

  • Failed to open the Connection:  to Database on CMC(Central Management Console)

    Post Author: [email protected]
    CA Forum: Data Connectivity and SQL
    I can create and run a report no problem on Crystal Reports XI. However when i upload it to the CMC i get Fail to open the connection. I use ODBC 3.51.17 for MySQL.I created Business Views from Dynamic Data Connections (could the problem be in here in the DC or DDC?)Reports are created in Crystal then uploaded to the CMCReports run FINE in Crystal, but once it is uploaded to the CMC i get a "Failed to open the connection.  xxxx.rpt

    Post Author: petiera
    CA Forum: Data Connectivity and SQL
    G'day,
    I'm facing the same problem, so did configuring ODBC and DNS solve this?
    If they did, I'd like to know how to do this in Linux. So far I've installed unixODBC and mysql ODBC connector, what else should be done? Is there some "list of things to do after installation" for Crystal Reports Server in Linux.
    -petiera

  • Firefox will not open a particular library database of research articles

    Working on iMac, system 10.6.8, Firefox version 17.0.1 and trying to open an article (research) from the Northcentral University Library. No trouble getting into site, but no articles will open.

    What kind of files are that?
    You may be needing a plugin to view the files or open the files in an external viewer in the case of PDF files.
    * https://support.mozilla.org/kb/pdf-files-are-blank-and-cant-be-downloaded-mac
    * https://support.mozilla.org/kb/Opening+PDF+files+within+Firefox

Maybe you are looking for

  • Photos print dark

    Photos on my HP Photosmart 8250 print too darkly. The display on my Gateway NV53A is calibrated correctly. I can pull up a scanned photo and it matches exactly. A print will be several shades darker.

  • HT1551 Apple TV turns on but no picture

    I Have an Apple TV nothing on screen

  • Bex apps for Iphone available?

    Hi experts, I wonder if anyone knows if there are any apps for Iphone available, that can be used för executing BEX queries or web templates. Please note that I am NOT interested in apps for SAP Business Objects, as we do not have this application. B

  • Organization skipped songs in album

    I let iTunes organize my music. Many songs are not with the album. How do I move the songs to the proper location in the correct album? Assistance appreciated. Otherwise, I'll have to start over and do albums manually.

  • Mac OS X 10.3

    Not linking Oracle properly: - Linking Oracle rm -f /Oracle10g/app/oracle/rdbms/lib/oracle gcc -o /Oracle10g/app/oracle/rdbms/lib/oracle -L/Oracle10g/app/oracle/rdbms/lib/ -L/Oracle10g/app/oracle/lib/ /Oracle10g/app/oracle/rdbms/lib/opimai.o /Oracle1