Invalid Database Specified

Hi all..
I have installed Oracle 10g
During Installation there is no option to provide database name
when i run form in form builder then it gives me error TNS ADAPTOR [becoz of i dont specified database name] and username is scott and password is tiger
what is the database name ? orcl doesnot work in scott/tiger .
plxx help

Hi
Hope you have an entry in the tnsnames.ora for the database to which forms connect to?
Try doing tnsping from the forms_home/bin and check if the db is reachable ?
Cheers
Priya

Similar Messages

  • Dashboard refresh - ORA-24373 invalid length specified for statement

    Post Author: Reesy
    CA Forum: Performance Management and Dashboards
    I am getting the following error message in the log file "ORA-24373: invalid length specified for statement" when trying to refresh a metric via dashboard manager. The metric has been successfully refreshed previously. The only change that I am aware of is that more data has been added to the underlying database (Oracle 10g).
    There are a number of different filters on the metric - some work ok - some give the above error.
    Can anyone help?
    Cheers

    IWOULDFORMATMYCODESOITISREADABLEUSINGMIXEDCASESPACESANDNEWLINES.
    ATABLEALIASWOULDPROBABLYHELPTOO.

  • Heap Error: Invalid Address specified to RtlValidateheap

    I have an OCCI program that connect to the Oracle database using Oracle\oraclient\9.2.0 and executes a query. I'm able to connect return a result set and actually display contents from the first row.
    However, as soon as I attempt to access the second row I get a heap error - - invalid address specified to RtlValidateHeap.
    I've seen other post where changing the type of run-time library under the Code Generation options of the compiler made a difference. Here, I've tried them all: /MTd, /MLd, /MDd but to no avail.
    I'm using Visual C++ 6.0 and linking in occi library oraocci9.lib.
    The line of code that's getting the error is the following:
    while ( resultSet->next () )
    no problem in getting the first row. Its the second next that dies.
    Any help would be appreciated.

    When I build the App with a RELEASE build instead of a DEBUG build this problem goes away.
    Apparently there is a bug in the oraocci9.lib regarding allocating on the Heap for DEBUG builds.
    While reading the other post on this forum I've discovered that I need the 9.2.04 version of the oraocci9.lib and oraocci9.dll that have been linked with MSVCRTD.dll, which is required to use in Debug mode for MSVC.
    It's unfortunate that this bug is not documented in the OCCI Programmer's manual that is available online. I could have saved myself a lot of time.
    Where can I find the most up-to-date patches for Oracle 9i?
    Any help would be appreciated. Thanks.
    Are these files available as standalone downloads on the Oracle web site? I haven't seen them. I don't want to download the entire database if I can avoid it. I just need the upgraded version of oraocci9.lib.

  • Error occurred while installing the application: Invalid device specified

    Error occurred while installing the application: Invalid <device> specified i am getting this error on windows. How to solve that.

    Hi there.
    I know this is an old post, but I fell here having this same problem for some weeks now, and i just figured my issue. Hope it help others:
    My iPhone is connecting automatically with my itunes on computer. Not really sure what type of connection or wireless sync, but the fact is that it IS connecting.
    For some weird reason it gets Flash Builder crazy and it cannot find the right device anymore. Even when I get my iPhone connected by cable, it says that it found the device, but doesn`t publish to it. The Flash Builder says that it was published, but nothing gets installed, and the debugger cannot connect.
    MY SOLUTION (for now): Turn off the phone wi-fi, so it gets out of my home network. works like a charm and I finally can test on my device again.
    Really hope this helps.

  • ORA-12705: Cannot access NLS data files or invalid environment specified

    Hi,
    I am using Oracle 10g Express, ojdbc14.jar , apache tomcat 5 server on Linux (Fedora 6).
    In CustDisp.JSP I have following code:
    <%
    try {
    Class.forName ("oracle.jdbc.driver.OracleDriver").newInstance();
    out.println("JDBC driver loaded.<br>");
    catch (ClassNotFoundException e) {
    %>
    error :<br>
    <%=e.toString() %>
    <%
    String sql = "SELECT custid, fname, lname FROM customers";
    try {
    Connection con = DriverManager.getConnection("jdbc:oracle:thin:@localhost:1521:XE","myid", "mypassword");
    out.println("Connection made.<br><br>");
    Statement s = con.createStatement();
    ResultSet rs = s.executeQuery(sql);
    %>
    When Itry to access http://localhost:8080/jsps/CustDisp.jsp,I get following error:
    java.sql.SQLException: ORA-00604: error occurred at recursive SQL level 1 ORA-12705: Cannot access NLS data files or invalid environment specified.
    When I display enviorenment parameters in this JSP, I get follwing:
    JDBC driver loaded.
    Oracle Home = /usr/lib/oracle/xe/app/oracle/product/10.2.0/server
    Language = en_US.UTF8
    NLS Language = AMERICAN_AMERICA.AL32UTF8
    Path = /usr/kerberos/bin:/usr/local/bin:/bin:/usr/bin
    Class Path = /usr/lib/jvm/java/lib/tools.jar:/usr/share/tomcat5/bin/bootstrap.jar:/usr/share/tomcat5/bin/commons-logging-api.jar:/usr/share/java/mx4j/mx4j-impl.jar:/usr/share/java/mx4j/mx4j-jmx.jar
    Charset = null
    Home = /usr/share/tomcat5
    Log Name = tomcat
    LD LIB PATH = /usr/lib/oracle/xe/app/oracle/product/10.2.0/server/lib:/usr/lib/oracle/xe/app/oracle/product/10.2.0/server/nls/data/ojdbc14.jar:
    Locale = en_US
    nls data directory : /usr/lib/oracle/xe/app/oracle/product/10.2.0/server/nls/data
    I have checked permissions for nls data folder, they are :
    Owner: Oracle
    Folder Access: Create and delete files
    Group: Dba
    Folder Access: Access files
    Others
    Folder Access: Access files
    Execute: Allow executing file as program.
    I have written a java program and used same drivers,customers table and connection i.e
    Class.forName ("oracle.jdbc.driver.OracleDriver").newInstance();
    String sql = "SELECT custid, fname, lname FROM customers";
    Connection con = DriverManager.getConnection("jdbc:oracle:thin:@localhost:1521:XE","myid", "mypassword");
    it works fine and displays customers.
    Only when I try to access my CustDisp.JSP, I get
    java.sql.SQLException: ORA-00604: error occurred at recursive SQL level 1 ORA-12705: Cannot access NLS data files or invalid environment specified. Error.
    Can some one please help me sorting out this problem?
    Thanks in advance.
    AQK

    Hi,
    Relevant code for CustDisp.JSP is given below:
    <%@ page session="false" %>
    <%@ page import="java.io.*" %>
    <%@ page import="java.util.*" %>
    <%@ page import="java.sql.*" %>
    <%@ page import="oracle.jdbc.*" %>
    <%
    try {
    Class.forName ("oracle.jdbc.driver.OracleDriver").newInstance();
    out.println("JDBC driver loaded.<br>");
    catch (ClassNotFoundException e) {
    %>
    error :
    <%=e.toString() %>
    <%
    String sql = "SELECT custid, fname, lname FROM customers";
    try {
    Connection con = DriverManager.getConnection("jdbc:oracle:thin:@localhost:1521:XE","myid", "mypassword");
    out.println("Connection made.<br><br>");
    Statement s = con.createStatement();
    ResultSet rs = s.executeQuery(sql);
    %>
    Permissions for nls data folder
    /usr/lib/oracle/xe/app/oracle/product/10.2.0/server/nls/data/
    are :
    Owner: Oracle
    Folder Access: Create and delete files
    Group: tomcat
    Folder Access: Access files
    Others
    Folder Access: Access files
    Execute: Allow executing file as program.
    In CustDisp.JSP I have following code which accesses ojdbc14.jar
    // Check access to the nls data files.
    cfile = "";
    try{
    File myfile = new File("/usr/lib/oracle/xe/app/oracle/product/10.2.0/server/nls/data/ojdbc14.jar");
    if (myfile.exists() == true){
    cfile="ojdbc14.jar exists in the data directory. Its length is "+ myfile.length()+" It can be read =" myfile.canRead() " , can be written = " + myfile.canWrite();
    }else{
    cfile="ojdbc14.jar does not exist.";
    catch (Exception er){
    %>
    error in reading file:<br>
    <%=er.toString() %>
    <%
    This code gives following output:
    File ojdbc14.jar exists in the data directory. Its length is 1536979 It can be read =true , can be written = false
    Every things seems to be OK but when I try to access http://localhost:8080/jsps/CustDisp.jsp, Iget:
    Sql Error:
    java.sql.SQLException: ORA-00604: error occurred at recursive SQL level 1 ORA-12705: Cannot access NLS data files or invalid environment specified
    Best regards.
    AQK

  • Why the err Invalid database Connection -CR 11 version in Visual studio 1.1

    Hai all,
    I am new to using the Crystal report with Visual studio 2003.I am facing Invalid database connection problem. My objective is tyring to upgrade CR 8 to CR11 with VS 1.1 framework(VC++ in .NET 2003).All things like ODBC connection with MS SQL server 2005,generating report going fine with CR8 version  but invalid database connection error comes with CR11 version. The configuration details and Code snippet are below for your ref,
    Upgrading CR8 to CR11 with VS .NET 2003.
    Application framework - VS 1.1 framework
    CR                            - 11 Version
    DB                            - MS SQL server 2005
    Connection                - ODBC
    DLL                          - CRPE32 DLL (Version11)
    Code snippet:
    CODBCDatabase * pDatabase = pApp->GetDatabase();
    BOOL bRes;
    bRes = ::PELogOnSQLServerWithPrivateInfo(_T("pdsodbc.DLL"), pDatabase->m_hdbc);
    Note: pdsodbc dll not found in local and anywhere.But it supports CR 8 but not CR 11.So i downloaded and put it in appropriate place exe path\system32\system and tested.Used and tested p2sodbc dll also but "Invalid DataBase connection" err came.Followed some instruction like changing the Data source name,DSN path,re installing CR 11 version and all but same problem coming.
    ::PELogOnSQLServerWithPrivateInfo() declation is in the following link
    http://www.arcaretentores.com.br/FTP/Format/Report/ProgramF/SEAGAT~1/CRW/DEV/Help/HTML/12a_0708.htm
    Thanks in advance
    Regards
    SatheeshKumar
    India.

    Thanks for your reply
       The API i have given is not available in Crystal report 11.So i tried with the PELogonServer API of version 11.It also failed.
      I am unable to understand the suggestions you gave to me 1) The Report Designer Component (RDC)
    2) The CR Assemblies for .NET.
    Can you give any link that have related samples or articles to implement the above topics please?
    Thanks again,
    Satheesh Kumar.D

  • Ora:12705 unable to access NLS data files or  invalid environment specified

    Hi All,
    In our BW production SAP standard job DBA:update_stats is failing  . In Job log we found that  the info like
    Ora:12705 unable to access NLS data files or  invalid environment specified.
    Connect to DB instance failed.
    Brconnect terminated with exit code 3.
    We are on Oracle 10.2 BW 3.5  Sunsolaris 5.10
    The Env is as below:
    HOME=/home/bwpadm
    PATH=/oracle/BWP/102_64/bin:/usr/jdk/j2sdk1.4.2_13/bin:/home/bwpadm:/usr/sap/BWP/SYS/exe/run:/etc:/usr/bin:.:/opt/EMCpower/bin/64:/etc/emc/bin:/usr/ccs/bin:/usr/ucb:/usr/openwin/bin
    LOGNAME=bwpadm
    HZ=
    TERM=vt100
    SHELL=/bin/csh
    MAIL=/var/mail/bwpadm
    TZ=US/Pacific
    PWD=/home/bwpadm
    USER=bwpadm
    SAPSYSTEMNAME=BWP
    DIR_LIBRARY=/usr/sap/BWP/SYS/exe/run
    LD_LIBRARY_PATH=/usr/sap/BWP/SYS/exe/run:/opt/j2sdk1.4.2_08/bin
    JAVA_HOME=/usr/jdk/j2sdk1.4.2_13
    THREAD=NOPS
    dbms_type=ORA
    dbs_ora_tnsname=BWP
    dbs_ora_schema=SAPBWP
    ORACLE_PSRV=BWP
    ORACLE_SID=BWP
    DB_SID=BWP
    ORACLE_HOME=/oracle/BWP/102_64
    ORACLE_BASE=/oracle
    ORA_NLS33=/oracle/client/92x_64/ocommon/nls/admin/data
    NLS_LANG=AMERICAN_AMERICA.WE8DEC
    SAPDATA_HOME=/oracle/BWP
    Plz suggest what we have to change to fix the problem.
    Thanks,
    Subhash.G

    Thanks for the reply,
    The below is the orasid env:
    As you suggest  we  found ld_library_path  is not set to  oracle client .
    we still using 9.x client shall we add that path to the above varaible.
    Please suggest..
    HOME=/oracle/RSS
    PATH=/oracle/RSS/102_64/bin:/oracle/RSS:/usr/sap/RSS/SYS/exe/run:/etc:/usr/bin:.:/opt/EMCpower/bin/64:/etc/emc/bin:/usr/ccs/bin:/usr/ucb
    LOGNAME=orarss
    HZ=
    TERM=vt100
    SHELL=/bin/csh
    MAIL=/var/mail/orarss
    TZ=US/Pacific
    PWD=/oracle/RSS/102_64/dbs
    USER=orarss
    SAPSYSTEMNAME=RSS
    DIR_LIBRARY=/usr/sap/RSS/SYS/exe/run
    LD_LIBRARY_PATH=/usr/sap/RSS/SYS/exe/run:/oracle/RSS/102_64/lib
    THREAD=NOPS
    dbms_type=ORA
    dbs_ora_tnsname=RSS
    dbs_ora_schema=SAPRSS
    ORACLE_SID=RSS
    DB_SID=RSS
    ORACLE_BASE=/oracle
    ORACLE_HOME=/oracle/RSS/102_64
    NLS_LANG=AMERICAN_AMERICA.UTF8
    SAPDATA_HOME=/oracle/RSS.
    Thanks,
    Subhash.G

  • Invalid Printer Specified Error

    I have an application that allows the user to select the target printer from the list of available printers on the system.
    The following code generates the list of printers from which they select:
    Dim PrinterList As New List(Of String)
            Dim PrintServer = New LocalPrintServer
            Dim PrintQueues = PrintServer.GetPrintQueues(New EnumeratedPrintQueueTypes() {EnumeratedPrintQueueTypes.Connections, EnumeratedPrintQueueTypes.Local})
            For Each p In PrintQueues
                PrinterList.Add(p.FullName)
            Next
    The selected value is saved. When I go to print, I use the following code to select the printer:
    ClientInstructions.PrintOptions.PrinterName = My.Application.PrinterSettings.ActiveLetterheadPrinter
    Edited by: Don Williams on Aug 10, 2010 7:08 AM

    This works 90% of the time. I occasionally get the following error:
    Error generated by: Print Client Instructions - Print Record Copy
    Error Message:  Invalid printer specified.
    temp_63b3d1f8-dedf-4eee-a119-0d301e2a98fa {34670353-397C-4316-B1EC-206D545CB318}.rpt
    HelpLink:
    Source: Analysis Server
    Target (Method): Void ModifyPrinterName(System.String)
    Stack Trace:    at CrystalDecisions.ReportAppServer.Controllers.PrintOutputControllerClass.ModifyPrinterName(String newVal)
       at CrystalDecisions.CrystalReports.Engine.PrintOptions.set_PrinterName(String value)
       at Workflow_WPF.ReportPrinting.PrintClientInstructions(RecordEntry ClientInstruction, Boolean ClientCopy, Boolean RecordCopy, Boolean Envelope, objVisitData WorkingData) in D:\TomGarg\Documents\Visual Studio 2008\Projects\WMS WPF\WorkflowClientApp\Modules\ReportPrinting.vb:line 1037
    Printer: hp OfficeJet 8500 Premier (redirected 2)
    When I use other redirectred printers, it works fine.
    Any idea what I am doing wrong? Any thoughs are greatly appreciated.

  • Error 820D - Invalid database - truncated to 0 bytes

    Hi Forum.
    I'm importing Mail into an account and every time I ran into the following error when the ofuser DB file size hit the 2gb.
    POA Log:
    10:05:37 F403 The database function 44 reported error [820D] on userq4f.db
    10:05:37 F403 Error: File size is too large [820D] User:$USER ($USER)
    GWcheck log:
    STRUCTURAL VERIFICATION of database /media/nss/$DIR/ofuser/userq4f.db
    Error 42- Invalid database - truncated to 0 bytes
    Suggestion- No direct recovery possible. Attempt to recover file from external backup.
    If no backup exists, request explicit structural rebuild from Admin and the
    database will be replaced by valid empty database, to allow re-create.
    However, all data previously contained in the database will be lost!
    It seems to me that there is a limitation somewhere but I don't get exact information where?
    I found nothing about the 820D in the error code documentation...
    Someone experienced this ever? Can someone explain that?
    Thanks in advance,
    Pascal

    Hi Laura,
    done with the options:
    <?xml version="1.0" encoding="UTF-8"?>
    <GWCheck database-path="L:\XX_PO">
    <database-type>
    <post-office>
    <post-office-name>
    XX_PO
    </post-office-name>
    <object-type>
    <user-resource>
    <name>
    userq4f.db
    </name>
    </user-resource>
    </object-type>
    </post-office>
    </database-type>
    <action name="analyze-fix-database">
    <contents/>
    <fix-problems/>
    </action>
    <process-option>
    <databases>
    <user/>
    <message/>
    </databases>
    <logging>
    <file>
    gwchk32.log
    </file>
    </logging>
    <results>
    <send-to>
    <admin/>
    </send-to>
    </results>
    <misc>
    <support-option>
    SUBJECTLIST
    </support-option>
    </misc>
    </process-option>
    </GWCheck>
    But there is nothing in the folder from where I gwcheck.exe started.... Any other suggestions?
    Thanks,
    Pascal

  • Can Somebody Help - Database specified does not exist

    Hi,
    Error 1065 The database specified does not exist
    Thanks
    --Anil                                                                                                                                                                                           

    It's discussing in other forum
    Error 1065 The database specified does not exist

  • Help me soon please: error:1065 the database specified does not exist.

    hello every one,
    when i start the computer the concurrent manager service not started , when i try to start it i have this problem:
    "could not start the oracle concmgrvis_orabac service on local computer error:1065 the database specified does not exist."
    i restarted computer and tried to stop and start all services more times but no change.
    i hope if you can help meplease soon.

    check note How to Recreate the Concurrent Manager Service for Oracle Applications 11i on Windows NT
    Note:152887.1
    maybe recreting the CM will solve your issue
    Follow these steps to recreate the concurrent manager service on Windows NT:
    1. cd $APPL_TOP
    2. dos> envshell.cmd (this opens up a new DOS window. Go to that window and
    do the following).
    3. cd $COMMON_TOP/admin/install
    4. dos> adsvcm.cmd -deinstall (deinstalls the ccm service)
    should exit with status '0'
    5. dos> adsvcm.cmd
    should exit with status '0'
    Should see "Successfully installed concurrent manager"
    6. Reboot
    fadi
    .

  • Error 1065 The database specified does not exist

    Hi All,
    When I am trying the start the Concurrent Manager [[From Services.msc]] I am getting this error.
    Error 1065 The database specified does not exist
    I am also not able to connect through SQL* Plus.
    Thanks
    --Anil                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

    Hi,
    Thanks to both of you. I don't have metalink access right now.
    Hussein
    It's my Desktop. For quite sometime I have not run it and Now when I am opening the Apps I am not able to login.
    Also I don't have much idea where to check the CM log file????
    Thanks
    --Anil                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • I got Invalid name specified for BUFFER_POOL while importing data

    Hi
    i got an error : ORA-25126: Invalid name specified for BUFFER_POOL while i was importing data (impdp)
    there are 2 instances on 2 servers
    1st instance is a single instance ,running on AIX ,oracle version 10.2
    and 2nd instance is RAC running on Solaris ,oracle version 11.2
    i want to import from 2nd instance (11.2) to 1st instance (10.2)
    here's my script
    impdp username/password tables=schema1.main,schema1.address table_exists_action=replace remap_schema=schema1:test remap_tablespace=schema:test_space nologfile=y network_link=db_sourcei got an error above only schema1.main table but schema1.address was able to import
    here's my log
    ORA-39083: Object type TABLE failed to create with error:
    ORA-25126: Invalid name specified for BUFFER_POOL
    Failing sql is:
    CREATE TABLE "TEST"."MAIN" ("Col1" VARCHAR2(1) NOT NULL ENABLE, "Col2" VARCHAR2(15) NOT NULL ENABLE, "Col3" VARCHAR2(13), "Col4" VARCHAR2(100), "Col5" NUMBER(2,0), "Col6" DATE, "Col7" VARCHAR2(1), "Col8" VARCHAR2(1), "Col9" DATE, "Col10" NUMBER(16,2)
    . . imported "TEST"."ADDRESS"                            317 rowshow can i solve this problem ?
    thanks in advance.. :)

    I believe this is a known bug - see MOS Doc 9160088.8 (Bug 9160088 - 11.2 EXPDP to lower version errors on import (ORA-25126)) - open an SR with Support
    HTH
    Srini

  • Invalid database schema for product hyperion reporting and analysis

    I tried to re-configure the BI core service to a new database
    But I get the message "invalid database schema for product hyperion reporting and analysis"
    The database is a restore of a production backup on a different MSSQL2005 server.
    I can not believe its really a sql schema matter.
    Does anyone know whats wrong?

    You cannot restore a BI+ database from backup...It is somewehere in the doc. There a re lots of references to the old server and config in the BI+ tables and you d need to edit/remove some files on the file server too. There is a doc available to do that but its far from simple.
    Best way is to export the content of your repository, configure a new DB and then reimport the content.
    If you re really stuck, drop me an email and ill send you that doc. I think ive still got it.
    Seb
    www.taysols.com.au
    [email protected]

  • "invalid mode specified" on Satellite 1625CDT

    I'm trying to install Arch on a Satellite 1625CDT, and when I go to run the installer, it reboots immediately after loading the kernel.  When I boot PHLAK, Mepis, etc, I get an error:
    invalid mode specified
    with the option of fixing it.  I don't know anything about this.  Can I specify a framebuffer mode in the installer?  Does anyone know what I should specify?  Here's an info page on a similar model.  The graphics card might be an ATI Rage LT Pro?
    Thanks!

    beniro wrote:
    mattux wrote:i think the amd k6 is not i686
    so the arch kernel would  not boot
    try knoppix... it is i484 compatible
    Dammit!  Just when I think I'm all cool and have an Arch linux laptop.  I think you're right.   
    Hmm... That was creepy.  I was posting from beniro's computer...

Maybe you are looking for

  • Help with exporting as an animated gif

    I've created a small banner ad and need to export it as an animated gif.  The problem is, when I open the gif after exporting it, there's no animation.  The way the animation is set up is 1 frame on the main timeline, and a scrolling movie clip as th

  • Adobe illustrator Visual C++ Runtime library error

    hi, all! i'd thankfull if somebody can help me. windows show me this message when i try to run adobe illustrator CS2 microsoft visual c++ runtime library runtime error! program: ...rator CS2\support files\contents\windows\illustrator.exe this applica

  • Folder shows up in iTunes that's not mine

    I opened iTunes today and found a new folder, "mccabe's LimeWire Tunes" containing a couple of songs - but I didn't create it and I can't delete it. HELP! Dell   Windows XP Pro  

  • Can we have a JTabbedPane inside JPanel ?

    I am having following containment hierarchy. JFrame --> JSplitPane(RightComponent) --> JPanel --> JTabbedPane --> (JPanel1 and JPanel2) When I run the application, I see no tabs and only JPanel2 is loaded. regards, Nirvan

  • I need to reinstall photoshop 2004 from disk  to my new windows 8 or 8.1

    My laptop crashed.  I need to reinstall photoshop 2004 from disk  to my new windows 8 or 8.1 (can't remember which it is), but my laptop freezes every time I insert the disk.  Can anyone help?