How Can I Open a database in SQL/PLUs

Hi, how can I Open Database with a SQL/Plus (Oracle 8i)

STARTUP OPEN;
Check this link
http://h50.isi.u-psud.fr/docmiage/oracle/doc/server.817/a82950/ch5.htm

Similar Messages

  • How can i open a directory in sql*plus?

    i need to run a file in sql* but i didn't know how to open the directory which contains it, can u tell me plz?

    i need to run a file in sql* but i didn't know how to open the directory which contains it, can u tell me plz? SQL > start C:\jungle\island\yourscript.sql

  • Flex Mobile project - How can I open a database csv?

    How can I open a database with csv flash builder and load the contents into a list?

    STARTUP OPEN;
    Check this link
    http://h50.isi.u-psud.fr/docmiage/oracle/doc/server.817/a82950/ch5.htm

  • How can i open the database by force?

    my database is crash because the machine power problem, when i restart again, oracle error say the control file is older than the system tablespace file,
    so i have to create the controlfile again, then , the database need recover , but my database is not archived, it can't take a media recoer , what should i do?
    how can i open the database even lost some data?

    Pallofa,
    Try open img file using some software.
    You need a software to mount the img file.
    http://techie-buzz.com/how-to/mount-iso-files-as-a-virtual-cd-dvd-drive.html
    If thinstead of using an img file, just use this command.
    repair-bde e: d: -rp xxxx-xxxxx-xxxxxx-xxxxx -f -lf c:\log.txt
    where d is the portable disk whereyou want the data and d drive should at least
    equal to e drive.
    Where xxxx-xxxx-xxxxx is the 48 digit recovery password.
    -lf will generate a log file and point to a certain location, here I have pointed to c drive.
    After repair-bde is completed, run chkdsk /f on D drive, then try to access your data.
    Manoj Sehgal

  • How can you change data on a SQL 2012 application database that uses availability groups from BizTalk server?

    If you use the WCF-SQL adapter it is recommend that you set UseAmbientTransaction to true if you are changing data. I think this requires MSDTC to be enabled on the SQL server that you are changing the data on. (http://msdn.microsoft.com/en-us/library/dd787981.aspx)
    I think that Availability groups does not support MSDTC. (http://msdn.microsoft.com/en-us/library/ms366279.aspx).
    How can you change data on a SQL 2012 application database that uses availability groups from BizTalk server?

    Hi,
    Yes, Availability groups doesn't support MSDTC. Please refer to the similar discusison which maybe helpfull:
    http://dba.stackexchange.com/questions/47108/alwayson-ag-dtc-with-failover
    http://stackoverflow.com/questions/17179221/msdtc-in-always-on-availability-groups

  • How can I set my database instance to start in OPEN mode after my computer

    Hi all,
    Sometime, I have to reboot my computer. After it rebooted, my instance is automaticaly executed. But, my database is not set to the OPEN mode (automaticaly). On some development computers, my status is set to OPEN after a reboot. On some computers, the local database is set to the IDLE instance.
    How can I set my database instance to start in OPEN mode after my computer has rebooted?
    Thank your for any help.

    but i could not run command emctl start dbconsolor lsnrctl..
    What error you are getting? If you are not able to run both of them then the ORACLE_HOME is not set properly.
    i set oracle_home and oracle_sid in thereWhere? Is it set in your user variable part of system variable. It is good to set it in the system variable, so that it will be common for all the users who use the system.
    To check whether the variable is set or not go to the command prompt and type
    setIf you see your ORACLE_HOME variable then it is set or else not.

  • How can I convert a Database Handle from TestStand to LabVIEW?

    I want to use a Database Handle (already created in TestStand by an Open Database step) in a LabVIEW-VI (called from TestStand) to connect it with the "Connection Reference" input of the "Easy SQL.vi"? If I use a directly connection via the "TestStand - Get Property Value (Number).vi" I get back the error message 4101 in LabVIEW. How can I convert the Database Handle?
    Test Engineering
    digades GmbH
    www.digades.com

    The TestStand database step types use the CVI SQL Toolkit to talk to databases. The handle that you are referencing is an internal memory location and not a actual handle that you can directly use. Currently as implemented the handle that is stored in a numeric TestStand property for the connection and the SQL statement are the handle values returned from the CVI SQL Toolkit. So for the connection handle, you could call the CVI SQL Toolkit function
    DBGetConnectionAttribute (
    int Connection_Handle,
    tDBConnectionAttr Attribute,
    void *Value);
    and get the CVI CAObjHandle reference. With this you could then call the CVI ActiveX function
    CA_GetInterfaceFromObjHandle(
    CAObjHandle Object_Handle,
    const IID *Interface_Id,
    int Force_AddRef,
    void *Inte
    rface_Ptr,
    int *Did_AddRef);
    to get the actual ActiveX interface reference. This would have to be converted into a LabVIEW reference.
    You may want to consider just using LabVIEW to open a new parallel reference only using the toolkit.
    Scott Richardson
    National Instruments

  • Can we use different Databases (Oracle & SQL Server) in one report?

    Post Author: venki5star
    CA Forum: .NET
    Hi there.
    Can we use different databases (Oracle & SQL Server) in a same report?
    If possible how?
    Another question,
    Can we change the Provider Name at runtime of the given report. If so the above question is useless...
    Thanks in Advance.

    I tried this using Oracle Provider for OLEDB (the one that supplied by Oracle Client) and Crystal Reports 9. you can drag the column into designer but the image does not appear in preview.
    I guess it's because CR does not recognized it as image, and there are no information that the blob data is an image at all.

  • How can I use two database in Dataset in SSRS?

    Hi,
    I am using one query to generate my SSRS report. In that query I am using subquery. Now I am pulling data from multiple tales.
    DB used in sub query is different than the rest of the tables DB.(So total I am using 2 DB(Database))
    So I see that in SSRS, I can connect query(In DataSet Properties) to one DATA_SOURCE only, how can I use other database which is I used in sub-query?
    I have to move this SSRS into PROD and I can't hard code that sub-query's DB name in my query.
    Please give me suggestion. Thanks!!
    Vicky

    In SSRS 2008 R2 you can use the Lookup function (http://technet.microsoft.com/en-us/library/ee210531.aspx ) and LookupSet function (http://technet.microsoft.com/en-us/library/ee240819.aspx
    Depending on your security set up, you can reference a table in a second database on the same server using a three part name:  database.schema.table.  This is more likely to work for you if you wrap your SQL command in a stored procedure.
    Russel Loski, MCT, MCSE Data Platform/Business Intelligence. Twitter: @sqlmovers; blog: www.sqlmovers.com

  • How can i recover my database after losing system data file.

    hi everyone,
    how can i recover my database in the following scenario.
    1. offline complete backup taken 2 days ago. database was in archive mode.
    2. today i lost my system data file, and also lost my all archived files.
    3. i started up the database but, the following error was generated.
    SQL> startup
    ORACLE instance started.
    Total System Global Area 135338868 bytes
    Fixed Size 453492 bytes
    Variable Size 109051904 bytes
    Database Buffers 25165824 bytes
    Redo Buffers 667648 bytes
    Database mounted.
    ORA-01113: file 1 needs media recovery
    ORA-01110: data file 1: 'D:\ORACLE\ORADATA\ORCL\SYSTEM01.DBF'
    4. i copied the system data file from backup and wrote the following statement, to recover the database.
    SQL> recover datafile 1;
    ORA-00279: change 2234434 generated at 07/15/2009 10:52:10 needed for thread 1
    ORA-00289: suggestion : C:\B\ARC00051.001
    ORA-00280: change 2234434 for thread 1 is in sequence #51
    Specify log: {<RET>=suggested | filename | AUTO | CANCEL}
    now i don't have any archive file. is there any chance to recover the database ?
    R e g a r d s,
    Asif Iqbal
    Software Engineer,
    Lucky Tex, Karachi,
    Pakistan.

    now i don't have any archive file. is there any chance to recover the database ?If no archive log files are available you can't recover the datafile.You need to have all the archives from the time of offline backup was taken till the system datafile is lost.
    Anand

  • How can i open a DOC or TXT file and insert the data into table?

    How can i open a DOC or TXT file and insert the data into table?
    I have a doc file . the doc include some columns and some rows.(for example 'ID,Name,Date,...').
    I'd like open DOC file and I'd like insert them into the table with same columns.
    Thanks.

    Use the SQL*Loader utility or the UTL_FILE package.

  • How Can I create a database?

    How can I create a database to store registered members info
    (member id, password and other information?) I have the scripts for
    member login, member signup, etc.. I understand that I will have to
    deploy the database, once it is created, in the same folder where I
    have all other scripts (PHP.)
    Thank you, in advance.

    Hey,
    basically you should start with an empty SharePoint 2010 project where you add an List-EventReceiver. This Receiver should point to the url of the list and handle the ItemAdded-Event. In this method you place the code to create the database, for example
    with a SQL-Statement.

  • About 1356 ERROR:pifreg:can not open registry database error

    I test the simpsver using simpclw run on the same machine, the simpsver seen to
    run normally. After config the correct network option,I test the simpsver on the
    different machine using simpclw, now I get the "1356 ERROR:pifreg:can not open
    registry database error" ,the action bea suggested is "Make sure that the directory(default
    TUXDIR/udataobj) is not on an NFS mounted filesystem that does not support file
    locking", but in fact bea client is installed on a local file system (ext2)!

    malikdba wrote:
    the last option which ask to delete the files. i already have deleted the files at operating system level. now the issue is how to let the system that the space is free in flash recovery area? rman is not running crosscheck command at mount stage of the target database. What steps should i follow now?
    Thanks
    malik
    Are you saying you are getting an error while trying to crosscheck at mount?  Or you simply don't believe it will work?
    oracle:orcl$ rman target /
    Recovery Manager: Release 11.2.0.2.0 - Production on Thu Jul 11 10:52:48 2013
    Copyright (c) 1982, 2009, Oracle and/or its affiliates.  All rights reserved.
    connected to target database (not started)
    RMAN> startup mount;
    Oracle instance started
    database mounted
    Total System Global Area     839282688 bytes
    Fixed Size                     2231128 bytes
    Variable Size                503317672 bytes
    Database Buffers             331350016 bytes
    Redo Buffers                   2383872 bytes
    RMAN> crosscheck archivelog all;
    using target database control file instead of recovery catalog
    allocated channel: ORA_DISK_1
    channel ORA_DISK_1: SID=18 device type=DISK
    specification does not match any archived log in the repository
    RMAN>
    A perfectly normal crosscheck at the mount stage

  • How can we position 5 Database Server for a centralized Database ?

    1) We are providing a e governance solution for an organization,where we are providing a  centralized database,Client have provided 5 Database server for the same.how can we position the Database Server? there are 5000 Concurrent users and 25000 users,SAN
    Storage for approx. 60 TB,Database size of 2 TB and growth of 1 TB every year
    2) How many instance can we have for above said Case?
    3) How much RAM Required ?

    Thanks for sharing information!!
    DB size is going to be too huge, you need to check for data archival option along with proper compression option.
    As per requirement, you need good server setup like; CPU: 4 cpu, 12 cores and RAM will be good to start with 256 GB.
    When you say 5 db server, is that it means 5 physical server not db instances rt?
    If that is the case then you can go for SQL Server 2014 to use that in memory options along with so many good support for temppdb, query optimization due to cardinality changes, SSD support etc.
    Intances will be:
    INS1, 2 : main instance and archival instance, using first two servers out of 5 servers.
    INS3: DR server, if it will not be active all the time and then we can easily check for 1/4 load on DR server so you can configure AlwaysOn to check INS1 and DR instance to get all HA DR part too.
    In case of INS4, INS5 can be used for reporting purpose being configured as other replication to act as local DR too.
    Hopefully I have covered all the available objects you have.
    Santosh Singh

  • How can I open my .cwk files on my new iMac OS 10.8?

    How can I open my .cwk files on my new iMac OS 10.8?

    Tom in London wrote:
    Alas, you can't.
    You can open nearly all of them. Pages will open AppleWorks 6 Word Processing documents but not AppleWorks 5 ones.
    Word Processing documents can be opened directly only in Pages.
    Draw Documents can be opened directly only in EazyDraw (the more expensive version from their website, not the cheaper one from the Mac App Store, and you will need v4.0 'Retro' not the most recent version) or Intaglio (though this appears not to be able to handle very complex drawings). (It's possible to copy Draw documents into a Word Processing document in order to open them in Pages, but you need AppleWorks to do this in the first place.)
    Spreadsheets can be opened directly only in Numbers.
    Presentations can be opened directly only in Keynote.
    Nothing will open AppleWorks databases or Paint documents: the only way to access them is to open them in AppleWorks and export.
    This seven-page article examines migrating from AppleWorks in some detail:
    http://www.wilmut.webspace.virginmedia.com/notes/aw/page1.html
    Cheers
    Pete

Maybe you are looking for

  • HP C7283 All-In-One and wireless issues

    I have the C7283 All-In-One hooked up on my home network.  I'm running a Linksys wireless router (WRT54G) and sending prints to the unit that way.  My main computer is an iMac with 10.5 and the latest drivers (2/2008) for the HP software. The print j

  • Hi Problem with LSMW-IDOC message type COND_A(COND_A02)

    hi Experts, I am using LSMW-IDOC to create the condition record for transcation code(XK15) when i am executing i am generating successfully idoc i can see the updated vales in TK15 tcode, the data base is getting updated the problem is the scale id i

  • JDeveloper 9.0.3 and Oracle Database 10g

    I currently support a project using JDeveloper 9.0.3, and the client is mandating that we upgrade our database to 10g. Am I going to be required to upgrade to JDeveloper 10g, too? Or is JDeveloper 9.0.3 compatible with a 10g database? Thanks for your

  • Check Voucher Concurrent Program

    Hi, The Check Voucher oracle report program has been running good for a year now, it is my own customized report ;) This morning the user reported that it has completed error. When I check the logs, I found this message: +----------------------------

  • Wie erhält man die Phase von 2 sin-Kurven?

    Unter Labview 7.1 habe ich von meinem NIscope 5102 mittels Express.vi die beiden Kanäle Ch0,Ch1 abgefragt und über einen Graph dargestellt. Die Spannungen der Kurven frage ich mittels statistic ab (Maxima). Nun benögtige ich auch die Phase zwischen d