Open Oracle 8.0 db from Access 2002

I'm a rank newbie user of Access 2002, but I've worked directly with Oracle SQL and PL/SQL on UNIX for many years. On my Win2000 workstation, I have several Oracle User Data Sources (pointing to UNIX DBs) defined under ODBC Data Source Administrator. I use these User DSNs with .DQY queries opened in Excel. I'd like to be able to use Access as a front-end GUI to open and ad hoc query the Oracle DBs associated with those User DSNs.
Some simple step-by-step instructions to establish Access 2002 to Oracle connection will go a long way.
Any help will be greatly appreciated.

Chris,
This forum focuses on connectivity to non-Oracle systems. Your questions would be best on the General database forum.

Similar Messages

  • Unable to Create  Oracle Model  When  Migrating from access 2000 to Oracle

    Hi ,
    I am migrating an access 2000 Database to Oracle 9i using Oracle Migration Workbench .
    I was sucessful in creation of Source Model ,but when I try to create the Oracle Data Model - Oracle Workbench
    HAngs . In short the Oracle Model creation log screen hangs .
    If any body has faced any similar please help me out .
    Please suggest a work around for this problem .
    Thanks in Advance
    Arun

    Arun,
    Can you provide a reproducible test case so that we can confirm the behavior here and log a bug? More detail can be found in the log/Error.log in case there is a java exception that is being thrown.
    Regards,
    Turloch
    Oracle Migration Workbench Team

  • Opening and maintaining old projects (from RH 2002) in RH 7

    Does anyone have tips on converting old projects from a very
    old version of RH (2002) to RH 7? We have two very large webhelp
    projects with context-sensitive topics, plus many other without. We
    realize that backing up is essential, but are there any other
    details that we should know about or information that you can point
    us to?
    Thanks in advance!

    I'll point you to
    Peter's
    site, yet again.
    Honestly, just about everything you want to know is on his
    site (and what isn't, is on Rick Stone's). You might also look at
    his
    merged
    WebHelp recommendations, as a way to possibly split those very
    large projects into more manageable chunks (they're bound to keep
    growing, right?).
    Good luck,
    Leon

  • Calling oracle function from access

    does anyone know if it s possible to call a oracle pl/sql function from access ?
    thx in advance
    Andre

    As long as you do not need a return value from the procedure, you can call it from Access.
    Create a QueryDef object as a sql pass through query. Make sure that you set the ReturnsRecords property of the QueryDef to false. Set the SQL property of the QueryDef to the correct syntax to execute your procedure, then call the Execute method of the QueryDef object.

  • INSERT into Oracle table as SELECT from MS Access table

    I'm trying to pull some data across from an MS Access database. I really need to pick and choose what is coming across, so migration isn't what I need. I can connect to the Access DB from SQL Developer, export data and so forth. However, I can't seem to find a way to directly access data in the MDB file from an Oracle connection. The two options that I can think of which would be perfect (if they are possible) are:
    1. If it's possible to SELECT between two open connections in SQL Developer. I can (and have) had both my Oracle conection where I want the data to go and the source Access connection opened simultaneously, but I can't see any way to address a query from one connection to another.
    2. If it's possible to create the equivalent of a database link to the Access MDB file from within my Oracle database so that I can address the query via that.
    Right now I'm exporting individual tables from Access to files, then doing a bunch of Search and Replace operations to convert them to SQL scripts with INSERT statements in the format required, then running those scripts in my Oracle connection. It works, but is very slow and tedious.

    You need to create a database link based on Database Gateway for ODBC. This gateway allows you to connect from an Oracle database to a foreign data store using a 3rd party ODBC driver.
    A suitable 3rd party ODBC driver which allows you to connect from Oracle to MS Access is the ODBC driver from Microsoft available on Windows platforms - I'm not aware of any 3rd party ODBC driver for MS Access available on Unix platforms.
    So when using DG4ODBC on Windows you can connect from your Oracle database (even when the database resides on Unix) to DG4ODBC on Windows which then connects to the Ms Access database using the MS Access ODBC driver.
    There's a separate Forum for those configs:
    Heterogeneous Connectivity

  • Problem calling Oracle function from Access 2007 / ADO

    Hopefully, I'm posting this in the correct forum. I'm also posting on an Access forum as I'm not entirely sure where the issue lies.
    I'm calling an Oracle function from Access 2007 using an ADO Command object.
    The function takes three input parameters and has a return value and an output parameter. The output parameter is a BLOB, and the return value is varchar2 (either "T" or "N") based on the outcome of the function.
    If I pass correct values to the function, I get the following error message (errs out on the command.execute line):
    Run-time error '-2147467259 (80004005)':
    [Oracle][ODBC][Ora]ORA-06502: PL/SQL: numeric or value error
    ORA-06512: at line 1
    Here's the function:
    FUNCTION GET_ITEMREV_ATTACH(P_ORGANIZATION_ID IN NUMBER,
    P_INVENTORY_ITEM_ID IN NUMBER,
    P_REVISION IN VARCHAR2,
    X_DRAWING OUT BLOB) RETURN VARCHAR2 IS
    RESULT VARCHAR2(1);
    BEGIN
    RESULT := 'T';
    BEGIN
    SELECT L.FILE_DATA
    INTO X_DRAWING
    FROM FND_ATTACHED_DOCUMENTS AD,
    MTL_ITEM_REVISIONS_B IR,
    FND_DOCUMENTS_TL D,
    FND_LOBS L
    WHERE AD.ENTITY_NAME = 'MTL_ITEM_REVISIONS' AND
    AD.PK1_VALUE = IR.ORGANIZATION_ID AND
    AD.PK2_VALUE = IR.INVENTORY_ITEM_ID AND
    AD.PK3_VALUE = IR.REVISION_ID AND
    AD.CATEGORY_ID = 1001216 AND
    D.DOCUMENT_ID = AD.DOCUMENT_ID AND
    D.LANGUAGE = 'US' AND
    L.FILE_ID = D.MEDIA_ID AND
    IR.ORGANIZATION_ID = P_ORGANIZATION_ID AND
    IR.INVENTORY_ITEM_ID = P_INVENTORY_ITEM_ID AND
    IR.REVISION = P_REVISION;
    EXCEPTION
    WHEN OTHERS THEN
    RESULT := 'N';
    END;
    RETURN(RESULT);
    END GET_ITEMREV_ATTACH;
    Here's the VB code I'm using to call the function:
    Private Sub Command8_Click()
    Dim CMD As New ADODB.Command
    Dim conn As ADODB.Connection
    Dim Param1 As ADODB.Parameter
    Dim Param2 As ADODB.Parameter
    Dim Param3 As ADODB.Parameter
    Dim ParamBlob As ADODB.Parameter
    Dim ParamReturn As ADODB.Parameter
    Set conn = New ADODB.Connection
    With conn
    .ConnectionString = "Driver={Oracle in OraHome92};Dbq=OAPLY;UID=***;PWD=*******"
    .CursorLocation = adUseClient
    .Open
    End With
    Set CMD = New ADODB.Command
    Set CMD.ActiveConnection = conn
    CMD.CommandText = "immi_attach_pub.get_itemrev_attach"
    CMD.CommandType = adCmdStoredProc
    Set ParamReturn = CMD.CreateParameter("RESULT", adVarChar, adParamReturnValue, 1)
    CMD.Parameters.Append ParamReturn
    Set Param1 = CMD.CreateParameter("P_ORGANIZATION_ID", adInteger, adParamInput, 1, 6)
    CMD.Parameters.Append Param1
    Set Param2 = CMD.CreateParameter("P_INVENTORY_ITEM_ID", adInteger, adParamInput, 4, 5207)
    CMD.Parameters.Append Param2
    Set Param3 = CMD.CreateParameter("P_REVISION", adVarChar, adParamInput, 2, "04")
    CMD.Parameters.Append Param3
    Set ParamBlob = CMD.CreateParameter("X_DRAWING", adLongVarBinary, adParamOutput, 200000)
    CMD.Parameters.Append ParamBlob
    CMD.Execute , , adExecuteNoRecords *** this is where the error occurs
    conn.Close
    MsgBox CMD.Parameters("RESULT")
    End Sub
    I've tried using different data types for the varchar2 parameters (adVarChar, adBSTR, adChar) with no difference.
    If I pass a bogus value for Param3...."'04'"...the function returns "N" indicating that it actually executed something. But, when I pass the correct value "04", it returns the above mentioned error.
    I can execute the function in PL/SQL just fine, so I'm thinking there's something wrong with the parameters, datatype, or other definitions on the Access side.
    Does anyone have any thoughts? I'm at a dead end with this. Sorry for the long post. Thank you.

    I tried your code with 11107 ODBC/client/database (but with a NULL output blob for convenience sake) and got no errors.
    If you're using 92 ODBC/client, you may want to try upgrading to something more current, or at least getting the latest patch(9208) to see if that helps. Since it works for me I'm guessing it may be a resolved bug in that version.
    Hope it helps,
    Greg

  • Migration Error from Access to Oracle through SQL Developer.

    Hi,
    Actually I am trying to migrate data from MS Access 2002 to Oracle 9i database through the SQL Developer. But Whenever I go to Capture Database from Access it will show me an error.... Invalid procedure Call and then it shows an error message... >>>>>>
    ShowSplashScreen("_OracleSplashScreen",3)
    after that i wont be able to do this task anymore..... So please help me get out of it... How Cam I Maigrate data from Access to Oracle 9i...
    Is any other tool i use or you can help me for this tool to migrate date...
    Please tell me..
    If yu can send me a mail then mail me on [email protected]
    regards,
    Vishal

    Hi Vishal,
    I have responded to your related thread on the Migration Workbench forum - Migration Error from Access to Oracle through SQL Developer.
    Regards,
    Hilary

  • Show Oracle structure from Access

    Hello everybody,
    Based on miscellaneous sources in newsgroups, I got an Access sub to show the structure of my Oracle base, i.e. the user's tables names and the fields names, sizes and types.
    That runs fine, except if I have fields of type TIMESTAMP(6), in which case the field name is blank (in fact empty string), and the field type appears identical to that of the previous field.
    Would anyone be able to explain me what is my error, and how to correct it ?
    This is VBA code, ran from Access 2003 :
    Public Sub ListeBaseOracle()
    Dim wrkODBC As Workspace
    Dim OracleDB As Database
    Dim Tb As TableDef
    Dim s As String
    ' strCon for documentary purposes - not used
    strCon = "Driver={Microsoft ODBC for Oracle}; " & _
    "CONNECTSTRING=(DESCRIPTION=" & _
    "(ADDRESS=(PROTOCOL=TCP)" & _
    "(HOST=SERVER.FR)(PORT=1521))" & _
    "(CONNECT_DATA=(SID = USER))); uid=USER;pwd=USER;"
    Set OracleDB = DBEngine(0).OpenDatabase("", dbDriverComplete, False, "ODBC;UID=USER;PWD=USER;DSN=WILLNOTKNOW.NET")
    Set gConnection = New ADODB.Connection
    gConnection.Open sConnect
    MousePointer = vbDefault
    rs.Open " SELECT * FROM TAB", gConnection
    If rs.EOF = False Then
       Do Until rs.EOF
         'RsTable.Open " SELECT * FROM " = rs!TNAME, gConnection
         RsTable.Open "SELECT * FROM " + rs!TNAME, gConnection
         Debug.Print rs![TNAME]
         For Each F In RsTable.Fields
               Debug.Print " " + F.Name,   F.Type
         Next
         RsTable.Close
         rs.MoveNext
       Loop
    Else
       MsgBox "No table accessible to user"
       gConnection.Close
       End
    End If
    rs.Close
    gConnection.Close
    End Sub
    Message was edited by:
    Gloops

    Well, there is some news about this.
    I could get the field name using openShema, but I was unable to find a documentation about openShema.
    I am still searching about the field type, as I get the same value in the DATA_TYPE field for a TIMESTAMP column as for a RAW one (and the TYPE_GUID is empty).
    rs.Open " SELECT * FROM TAB", gConnection
    If rs.EOF = False Then
        Do Until rs.EOF
            RsTable.Open "SELECT * FROM " + rs!TNAME, gConnection
            NomTab = rs!TNAME
            Set rsC = gConnection.OpenSchema(adSchemaColumns, Array(Empty, Empty, NomTab, Empty))
            Debug.Print rs![TNAME]
            While Not rsC.EOF
                Debug.Print "", rsC!COLUMN_NAME, rsC!Description, rsC!DATA_TYPE, rsC!TYPE_GUID
                rsC.MoveNext
            Wend
            RsTable.Close
            rs.MoveNext
        Loop
    Else
        MsgBox "No data"
        gConnection.Close
        End
    End If
    rs.Close
    gConnection.Close
    Message was edited by:
    Gloops

  • Hello I have a problem with a Wifi Survey app, this app is from Access Agility, however this app was working fine, but without advise stop of working, I tried to open again, but app be close after few seconds.

    Hello I have a problem with a Wifi Survey app, this app is from Access Agility, however this app was working fine, but without advise stop of working, I tried to open again, but app be close after few seconds. Every time that I tried to open it, in diagnostic and use create some files, in special one named LatestCrash-WifiSurvey.plist, this one generate an incident identifier E73B0164-CDFA-4E9E-839E-A0C021BD17A2, but this incident identifier change every time that I tried to open, the last incident identifier is: DE600EB3-AB57-4C33-8DE8-71F6788A7441.
    After of it, I checked that the app had a new version available for downloading, I took a backup of my ipad and then upgrade this app, but is the same problem, all I want is to save the projects I had in this app, I´m afraid that if I delete this app and re-install it, probably I loss my projects.
    Thanks for your help indicating how I can save my projects and see them for example in an iphone for assurance that data is not lost.
    Something that called my attention is part of the log that shows a big CPU processing, but the strange thing is I killed all applications.
    Incident Identifier: E73B0164-CDFA-4E9E-839E-A0C021BD17A2
    CrashReporter Key:   ed0ca1405ce83d4f80cb3cce063d7248d7b76e91
    Hardware Model:      iPad2,5
    Process:         WifiSurvey [139]
    Path:            /var/mobile/Applications/1BEEE35A-85FC-4BE4-B62A-39A930CB3CE2/WifiSurvey.app/Wi fiSurvey
    Identifier:      WifiSurvey
    Version:         ??? (???)
    Code Type:       ARM (Native)
    Parent Process:  launchd [1]
    Date/Time:       2013-08-08 19:01:13.476 -0500
    OS Version:      iOS 6.1.3 (10B329)
    Report Version:  104
    Exception Type:  00000020
    Exception Codes: 0x000000008badf00d
    Highlighted Thread:  0
    Application Specific Information:
    com.accessagility.wifisurvey failed to launch in time
    Elapsed total CPU time (seconds): 20.990 (user 20.990, system 0.000), 52% CPU
    Elapsed application CPU time (seconds): 19.954, 50% CPU

    See:
    iOS: Troubleshooting applications purchased from the App Store
    Contact the developer/go to their support site if only one app.
    Restore from backup. See:
    iOS: How to back up              
    Restore to factory settings/new iPod

  • Error in Transformation from Access to Oracle

    I am getting following error while fetching data from Access in Load data.
    java.lang.ClassCastException: java.lang.Integer cannot be cast to [B
         at oracle.jdbc.driver.OraclePreparedStatement.setObjectCritical(OraclePreparedStatement.java:7839)
         at oracle.jdbc.driver.OraclePreparedStatement.setObjectInternal(OraclePreparedStatement.java:7555)
         at oracle.jdbc.driver.OraclePreparedStatement.setObject(OraclePreparedStatement.java:8028)
         at oracle.jdbc.driver.OraclePreparedStatementWrapper.setObject(OraclePreparedStatementWrapper.java:238)
         at com.sunopsis.sql.SnpsQuery.updateExecStatement(SnpsQuery.java:2027)
         at com.sunopsis.sql.SnpsQuery.addBatch(SnpsQuery.java:122)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.executeUpdate(SnpSessTaskSql.java:3034)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.execCollOrders(SnpSessTaskSql.java:729)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.treatTaskTrt(SnpSessTaskSql.java:2815)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.treatTask(SnpSessTaskSql.java:2515)
         at com.sunopsis.dwg.dbobj.SnpSessStep.treatAttachedTasks(SnpSessStep.java:534)
         at com.sunopsis.dwg.dbobj.SnpSessStep.treatSessStep(SnpSessStep.java:449)
         at com.sunopsis.dwg.dbobj.SnpSession.treatSession(SnpSession.java:1954)
         at oracle.odi.runtime.agent.processor.impl.StartSessRequestProcessor$2.doAction(StartSessRequestProcessor.java:322)
         at oracle.odi.core.persistence.dwgobject.DwgObjectTemplate.execute(DwgObjectTemplate.java:224)
         at oracle.odi.runtime.agent.processor.impl.StartSessRequestProcessor.doProcessStartSessTask(StartSessRequestProcessor.java:246)
         at oracle.odi.runtime.agent.processor.impl.StartSessRequestProcessor.access$0(StartSessRequestProcessor.java:237)
         at oracle.odi.runtime.agent.processor.impl.StartSessRequestProcessor$StartSessTask.doExecute(StartSessRequestProcessor.java:794)
         at oracle.odi.runtime.agent.processor.task.AgentTask.execute(AgentTask.java:114)
         at oracle.odi.runtime.agent.support.DefaultAgentTaskExecutor$2.run(DefaultAgentTaskExecutor.java:82)
         at java.lang.Thread.run(Thread.java:662)
    Unable to understand Error.
    What this error is about and whoat would i have to Do to remove it ?
    Details:-
    LKM:- SQL to Oracle (Only this is refered in this step)
    IKM:- IKM SQL Incremet Update .(It would not be refered in this step)
    Edited by: MaheshGx on Jan 9, 2012 6:24 PM

    Posting Code:-
    Source Code:-
    select     
         MTP_CONVERSION."MTP#"     as C9_MTP_,
         MTP_CONVERSION."MTP#"     as C14_MTP_,
         MTP_CONVERSION."MTP#"     as C37_MTP_,
         MTP_CONVERSION."MTP#"     as C38_MTP_,
         TABLE_BCAT_SALES."Budg_Cat_Sales"     as C2_BUDG_CAT_SALES,
         TABLE_PATTERN."Pattern"     as C7_PATTERN,
         TABLE_BCAT_SALES."Budg_Cat_Sales"     as C11_BUDG_CAT_SALES,
         TABLE_SIZE."Size_Designation"     as C24_SIZE_DESIGNATION,
         TABLE_INFL_TYPE."Infl_Type_Abr"     as C26_INFL_TYPE_ABR,
         WARRANTY."MTP_Warr"     as C27_MTP_WARR,
         TABLE_CUSTOMER."Customer"     as C30_CUSTOMER,
         MTP_CONVERSION."Year"     as C31_YEAR,
         VEHICLE."Vehicle"     as C34_VEHICLE,
         MTP_CONVERSION.IPC     as C6_IPC,
         MTP_CONVERSION.IPC     as C8_IPC,
         TABLE_BCAT_SALES."Budg_Group_Sales"     as C12_BUDG_GROUP_SALES,
         TABLE_BCAT."Brand"     as C25_BRAND,
         TABLE_LOAD_CAT.PR     as C29_PR,
         MTP_CONVERSION.IPC     as C36_IPC,
         MTP_CONVERSION.IPC     as C41_IPC,
         MTP_CONVERSION.BPC     as C5_BPC,
         TABLE_SIZE."Width"     as C18_WIDTH,
         TABLE_SIZE."Width"     as C19_WIDTH,
         TABLE_SIZE."Width"     as C32_WIDTH,
         MTP_CONVERSION."LineUp_Ind"     as C1_LINEUP_IND,
         TABLE_SIZE."Series"     as C16_SERIES,
         TABLE_SIZE."Series"     as C17_SERIES,
         TABLE_CUSTOMER.OE     as C23_OE,
         TABLE_SIZE."Series"     as C33_SERIES,
         MTP_LINEUP."Load_Single"     as C13_LOAD_SINGLE,
         TABLE_SIZE."Rim"     as C28_RIM,
         MTP_CONVERSION."Product_Description"     as C10_PRODUCT_DESCRIPTION,
         MTP_LINEUP."Load_Dual"     as C15_LOAD_DUAL,
         MTP_CONVERSION."Product_Description"     as C20_PRODUCT_DESCRIPTION,
         MTP_LINEUP."Speed"     as C3_SPEED,
         TABLE_PATTERN."Winter"     as C21_WINTER
    from     ."MTP_Conversion" as MTP_CONVERSION, ."MTP_LineUp" as MTP_LINEUP, ."Vehicle" as VEHICLE, ."Warranty" as WARRANTY, ."Table_Pattern" as TABLE_PATTERN, ."Table_BCAT_Sales" as TABLE_BCAT_SALES, ."Table_Customer" as TABLE_CUSTOMER, ."Table_BCAT" as TABLE_BCAT, ."Table_Size" as TABLE_SIZE, ."Table_Infl_Type" as TABLE_INFL_TYPE, ."Table_Load_Cat" as TABLE_LOAD_CAT
    where     (1=1)
    And (MTP_LINEUP."Infl_Type_Code"=TABLE_INFL_TYPE."Infl_Type_Code")
    AND (MTP_LINEUP."Customer_Code"=TABLE_CUSTOMER."Customer_Code")
    AND (MTP_LINEUP."BCATS_Code"=TABLE_BCAT_SALES."BCATS_code")
    AND (MTP_CONVERSION."MTP#"=WARRANTY."MTP#")
    AND (MTP_LINEUP."Pattern_Code"=TABLE_PATTERN."Pattern_Code")
    AND (MTP_LINEUP."Load_Cat_Code"=TABLE_LOAD_CAT."Load_Cat_Code")
    AND (MTP_LINEUP."BCAT_Code"=TABLE_BCAT."BCAT_code")
    AND (MTP_CONVERSION."MTP#"=MTP_LINEUP."MTP#")
    AND (MTP_CONVERSION."MTP#"=VEHICLE."MTP#")
    AND (MTP_LINEUP."Size_Code"=TABLE_SIZE."Size_Code")
    Target Code:-
    insert into OMPODI.C$_0NEWBSMASTERTYRE
         C9_MTP_,
         C14_MTP_,
         C37_MTP_,
         C38_MTP_,
         C2_BUDG_CAT_SALES,
         C7_PATTERN,
         C11_BUDG_CAT_SALES,
         C24_SIZE_DESIGNATION,
         C26_INFL_TYPE_ABR,
         C27_MTP_WARR,
         C30_CUSTOMER,
         C31_YEAR,
         C34_VEHICLE,
         C6_IPC,
         C8_IPC,
         C12_BUDG_GROUP_SALES,
         C25_BRAND,
         C29_PR,
         C36_IPC,
         C41_IPC,
         C5_BPC,
         C18_WIDTH,
         C19_WIDTH,
         C32_WIDTH,
         C1_LINEUP_IND,
         C16_SERIES,
         C17_SERIES,
         C23_OE,
         C33_SERIES,
         C13_LOAD_SINGLE,
         C28_RIM,
         C10_PRODUCT_DESCRIPTION,
         C15_LOAD_DUAL,
         C20_PRODUCT_DESCRIPTION,
         C3_SPEED,
         C21_WINTER
    values
         :C9_MTP_,
         :C14_MTP_,
         :C37_MTP_,
         :C38_MTP_,
         :C2_BUDG_CAT_SALES,
         :C7_PATTERN,
         :C11_BUDG_CAT_SALES,
         :C24_SIZE_DESIGNATION,
         :C26_INFL_TYPE_ABR,
         :C27_MTP_WARR,
         :C30_CUSTOMER,
         :C31_YEAR,
         :C34_VEHICLE,
         :C6_IPC,
         :C8_IPC,
         :C12_BUDG_GROUP_SALES,
         :C25_BRAND,
         :C29_PR,
         :C36_IPC,
         :C41_IPC,
         :C5_BPC,
         :C18_WIDTH,
         :C19_WIDTH,
         :C32_WIDTH,
         :C1_LINEUP_IND,
         :C16_SERIES,
         :C17_SERIES,
         :C23_OE,
         :C33_SERIES,
         :C13_LOAD_SINGLE,
         :C28_RIM,
         :C10_PRODUCT_DESCRIPTION,
         :C15_LOAD_DUAL,
         :C20_PRODUCT_DESCRIPTION,
         :C3_SPEED,
         :C21_WINTER
    )

  • I can no longer open numbers and am therefore barred from access to important accounts - what do i do next

    I can no longer open numbers and am therefore barred from access to important accounts.What do I do next?

    Hi mp,
    If you updated to OS X Mavericks, there may have been an automatic update to Numbers 3. Numbers 3 will be in your Applications folder. Numbers '09 has not been replaced. Look for Numbers '09 (Numbers 2.3) in a folder called iWork '09 inside your Applications folder. You can run both versions of Numbers at the same time.
    I have icons for both versions on my Dock. Drag each to the Dock from Applications folder and Applications > iWork '09 folder. Right click on each and Options > Keep in Dock. Now you have the choice of which to use.
    Numbers 2 (3 column chart) on the left. Numbers 3 (4 column chart) on the right.
    If a document won't open, try opening from within each version. Or right click on the document and Open With...
    You can Export a Numbers 3 document back to Numbers '09 with Menu > Export > Numbers '09...
    Post back if you have problems.
    Regards,
    Ian.

  • How do you get a topic to open in a custom window when accessed from the index?

    I right click on an index key word and open Properties. There is only one topic associated with this key word. I click on the Advanced tab, select the custom window that I created. Click OK, compile, etc.
    When I try to access this topic from the index, it still opens in the default pane. When I access it from the TOC, it opens in the custom window. How can I get the topic to open in the custom window from the index?
    Thanks!
    Sue

    Hello,
    The link might not work in Preview (When the option to open link in new tab is checked) however it will work if you do a File>Preview page/site in Browser.
    Muse Preview has only one tab and cannot open another tab/window which is why this functionality does not work in Muse Preview. but works in preview in Browser and in published site.
    Regards,
    Sachin

  • Import/Export from Access MDB to Oracle DB

    Dear Friends,
    I need to import a huge table from access to Oracle. I tried to export the file from MS Access to Oracle, it is giving error. I tried another way of doing , i first exported the data to SQL server and then using Export/Import utility of SQL Server, it has imported succesfully. I am not sure which is the best way to import data from ACCESS to Oracle.
    Kindly suggest,
    Regards,
    Vinay

    Another approach you might try goes something like this:
    1. In Access, link the destination Oracle table (for example, via File, Get External Data, Link Tables...).
    2. In Access, create an Append Query to select rows from your Access table and insert them in to the linked Oracle table.

  • Upload data from Access Database to Oracle Database In oracle 8i

    hi everybody
    i am trying upload data from Access database to Oracle Database
    i have TT(F1,F2,F3) table in Access Databsse
    and emp(ename,ecode,sal) in oracle Database
    db_ac is my datasource name
    when i connect to Access Database thru this command this show following error
    SQL> connect a/a@odbc:db_ac;
    ORA-00022: invalid session id; access denied
    ORA-00022: invalid session id; access denied
    ORA-00022: invalid session id; access denied
    Error accessing PRODUCT_USER_PROFILE
    Warning: Product user profile information not loaded!
    You may need to run PUPBLD.SQL as SYSTEM
    Server not available or version too low for this feature
    ORA-00022: invalid session id; access denied
    Connected.
    when i am trying copy data as this command it show error and data not copied.
    SQL> COPY FROM A/A@ODBC:DB_AC TO test/test@ora INSERT EMP USING SELECT F1,F2,F3 FROM TT;
    Array fetch/bind size is 15. (arraysize is 15)
    Will commit when done. (copycommit is 0)
    Maximum long size is 80. (long is 80)
    ORA-00022: invalid session id; access denied
    ERROR:
    OCA-00022: general OCA error
    can help me .
    with thanx

    Hi there,<br>
    <br>
    Please kindly use instead the Database Forum at:-<br>
    General Database Discussions<br>
    <br>
    ... to place your question as this is for the Oracle Portal product Export / Import functionality.<br>
    <br>
    <br>
    Kind regards,<br>
    Pedro.

  • Problems with migrating from access to oracle

    OMWB has a few problems with upper and lower case letters, when i try to modify my old access DB OMWB cant find the new table in Oracle:
    (3011 The Microsoft Jet database engine could not find the object <name>. Make sure the object exists and that you spell its name and the path name correctly. )
    the problem is that it searching for AP_BILD.A990BILDER but the correct name is AP_BILD.a990Bilder
    when i recreate the table as AP_BILD.A990BILDER it worked.
    but i cant do that for almost 400 tables!
    any suggestion how to fix this?
    also have a problem when creating the trigger:
    OMWB puts the tablename into 2 double quotation marks each side (""name"") and of course it tells me something of a tablenamelength of NULL and it doesnt work
    working with release 9.2.0.1.0 of OMWB

    update: if i try to link the table from access directly it also cant find the table, but can find other tables (the others are in upper case).
    could it be a problem with the odbc driver? does it automatically look for upper case names?
    anyone know how to fix this?
    thanks in advance

Maybe you are looking for

  • Two icons in taskbar?

    This problem just started today, I don't know if Skype updated and caused this but anyway: Skype is creating a second icon in the taskbar (Windows . If I'm logged out, the original icon is there, so I click on it to log in, and a "signing in" window

  • Firmware problem, Zen to

    I tried to upgrade my Zen touch to the playforsure firmware, but it didn't take it, now I have a "firmware problem" message that doesn't go away, I did a cleanup, format with no luck, it only boots into recovery mode and if I try to flash it again I

  • 2003 terminal server. Clients log in , see their desktop and then it changes to a fake windows desktop.

    I figured this was a virus or malware, and have scanned the server but have not found the virus/malware. Because of the delay of the fake screen popping up, I figured it was in the startup folder, but it is not. Malware Bytes only detected a possible

  • Reinstall ps cc after hard disk broken

    I have to change the hard disk on my pc and can't recover the files. How coul'd reinstall photoshop cc? Now I'm using the second licence on my notebook.

  • Do I need to keep "XCopy" on my Powerbook G4?

    I just installed OS 10.4 Tiger over Panther 10.3.9 on my trusty Powerbook G4. I now have among my applications a 3.11 GB folder titled "XCopy PowerBook App & Classic Support." Does XCopy mean "extra copy," or what? I'd like to free up those 3.11 GB,