Error starting at line 974 in command: CREATE SEQUENCE  Spot_spot_id_SEQ

I have a customer who is trying to migrate a Sybase database to Oracle.
He gets the following error during the build step
Error starting at line 974 in command: CREATE SEQUENCE Spot_spot_id_SEQ
This sequence does not exist on the Oracle database or does it exist on his Sybase database. How can we resolve this error so that the migration can continue on.
Thanks,
Walter

This is for Sybase version 12. According to the customer this occurs during the build step in SQL Developer.
He has tried the migration in few times. This includes dropping and creating the repository. I believe customer is trying the Quick migration method.

Similar Messages

  • Error starting at line 1 in command

    Hi,
    Here is the log from Sql developer
    http://dl.dropbox.com/u/40211031/log4.txt
    but when directly running the same scripts, I got no problems
    Edited by: Hua Min on Mar 20, 2012 9:32 AM

    This is like the OP looks like
    <tt>
    Error starting at line 1 in command:
    i n s e r t   i n t o   e n t _ t i t l e   v a l u e s   ( ' C h i e f   E x e c u t i v e s ,   G e n e r a l   M a n a g e r s   a n d   L e g i s l a t o r s ' , ' C h i e f   E x e c u t i v e   o r   M a n a g i n g   D i r e c t o r ' ) 
    Error report:
    Unknown Command
    Error starting at line 2 in command:
    Error report:
    Unknown Command
    Error starting at line 3 in command:
     i n s e r t   i n t o   e n t _ t i t l e   v a l u e s   ( ' C h i e f   E x e c u t i v e s ,   G e n e r a l   M a n a g e r s   a n d   L e g i s l a t o r s ' , ' C o r p o r a t e   G e n e r a l   M a n a g e r ' ) 
    Error report:
    Unknown Command
    </tt>
    Regards
    Etbin
    Edited by: Etbin on 19.3.2012 20:30
    Maybe multibyte character set related (a SQL Developer malfunction ?)

  • Error: starting remote managed server from command line

    I have enabled SSL on the admin server, and configured/added the managed server
    via my admin server console. However, when I attempt to start the managed server
    via cmd line (script) on the remote machine, I get the following message:
    Starting WebLogic Server ....
    Connecting to http://adminservermachine:7001...
    <Nov 18, 2002 11:42:28 AM EST> <Emergency> <Configuration Management>
    <Errors detected attempting to connect to admin server at wk-gferguson:7001 during
    initialization of managed server ( null:7001 ). The reported error was: < weblogic.security.acl.DefaultUserInfoImpl
    Start server side stack trace:
    java.lang.ClassCastException: weblogic.security.acl.DefaultUserInfoImpl
    at weblogic.kernel.BootServicesImpl.authenticate(BootServicesImpl.java:189)
    at weblogic.kernel.BootServicesImpl.invoke(BootServicesImpl.java:145)
    at weblogic.rjvm.RJVMImpl.dispatchRequest(RJVMImpl.java:620)
    at weblogic.rjvm.RJVMImpl.dispatch(RJVMImpl.java:581)
    at weblogic.rjvm.ConnectionManagerServer.handleRJVM(ConnectionManagerServer.java:164)
    at weblogic.rjvm.ConnectionManager.dispatch(ConnectionManager.java:640)
    at weblogic.rjvm.t3.T3JVMConnection.dispatch(T3JVMConnection.java:454)
    at weblogic.socket.NTSocketMuxer.processSockets(NTSocketMuxer.java:643)
    at weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:24)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:139)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
    End server side stack trace
    > This condition generally results when the managed and admin servers are using
    the same listen address and port.>
    <Nov 18, 2002 11:42:28 AM EST> <Emergency> <Server> <Unable to initialize the
    se
    rver: 'Fatal initialization exception
    Throwable: weblogic.management.configuration.ConfigurationException: weblogic.se
    curity.acl.DefaultUserInfoImpl

    This particular log entry looks like your problem:
    <Jan 8, 2010 11:33:30 PM PST> <Error> <Server> <BEA-002606> <Unable to create a server socket for listening on channel "Default". The address 10.249.22.43 might be incorrect or another process is using port 20014: java.net.BindException: Cannot assign requested address.>
    Check using netstat to see if that port is already in use.
    Shared libraries don't need to be on the classpath, they are deployed similar to applications, so I'm confused by your comment about putting them on the classpath. I assume you're using Node Manager to start the server from the AdminConsole, if you want to use a difference classpath either use the StartupScriptEnabled=true in nodemanager.properties OR put the extra classpath entries on the Server Start tab in the console.

  • PL/SQL not working (error starting at line 1)

    Good day,
    I can't seem to get any PL/SQL commands to run in a SQL sheet. I am using SQL Developer with Oracle Express 11g and can run general SQL statements. Do I need to be running PL/SQL in a different form? I am copying the HR Schema Queries from here:
    http://www.srikanthtechnologies.com/oracle/dec9/hrqueries.html
    None of them are working and I'm guessing I need to change a setting.
    Thanks for your help,
    J

    I am just trying to assume what your problem may be..
    Use a "/" after your Declare-Begin-End Block and then place your cursor anywhere between your pl'sql block and hit "F9" from your SQL Developer.
    Things should get fine then.
    As far as your queries or blocks are concerned, I dont see any issues with them..

  • Script to drop/re-create sequences is generated with errors

    Hello,
    I'm migrating an Oracle 10g instance running on Solaris 10 to an Oracle 11g instance running on RedHat Linux. I'm following the "Platform Migration" White Paper ( URLhttp://www.oracle.com/technology/deploy/availability/pdf/maa_wp_11g_platformmigrationtts.pdf ).
    In the appendix, there's the code for a script that's supposed to generate an SQL script that drops and re-creates the sequences on the target machine:
    set heading off feedback off trimspool on escape off
    set long 1000 linesize 1000 pagesize 0
    col SEQDDL format A300
    spool tts_create_seq.sql
    prompt /* ========================= */
    prompt /* Drop and create sequences */
    prompt /* ========================= */
    select regexp_replace(
    dbms_metadata.get_ddl('SEQUENCE',sequence_name,sequence_owner),
    '^.*(CREATE SEQUENCE.*CYCLE).*$',
    'DROP SEQUENCE "'||sequence_owner||'"."'||sequence_name
    ||'";'||chr(10)||'\1;') SEQDDL
    from dba_sequences
    where sequence_owner not in
    (select name
    from system.logstdby$skip_support
    where action=0)
    spool off
    I have run it on my Solaris machine, and it generates a file that looks like this:
    /* ========================= */
    /* Drop and create sequences */
    /* ========================= */
    CREATE SEQUENCE "MDSYS"."TMP_COORD_OPS" MINVALUE 1000000 MAXVALUE 2000000 INCREMENT BY 1 START WITH 1000000 NOCACHE NOORDER CYCLE
    CREATE SEQUENCE "MDSYS"."SDO_TOPO_TRANSACT_SUBSEQ" MINVALUE 1 MAXVALUE 999999999999999999999999999 INCREMENT BY 1 START WITH 1 NOCACHE ORDER NOCYCLE
    I don't have any "drop sequence" commands, and there is no semicolon (;) at the end of the "create sequence" lines, so those are not executed.
    I'm not at all familiar with PL/SQL, could somebody point me to the error?
    Thank you,
    Adrian

    Why do you need the "REGEXP_REPLACE ()" function?
    This would be simpler:
    SET long 32000 longc 80 pages 0 lin 80 trims on
    COL ddl wor
    SELECT    'DROP SEQUENCE "'
           || sequence_owner
           || '"."'
           || sequence_name
           || '";'
           || CHR (10)
           || DBMS_METADATA.get_ddl ('SEQUENCE', sequence_name, sequence_owner)
           || ';'
           || CHR (10) DDL
      FROM dba_sequences
    WHERE sequence_owner NOT IN (SELECT NAME
                                    FROM SYSTEM.logstdby$skip_support
                                   WHERE action = 0);
    /:p

  • Error while running aiaconfig.sh - The command line argument(s) "weblogicConfig"

    Hi.
    We are Configuring PIP on AIA 11.1.1.7 after installing AIA PIP release. we we run ./aiaconfig.sh we are getting below error message,
    $./aiaconfig.sh
    Starting Oracle Universal Installer...
    Checking swap space: must be greater than 500 MB.   Actual 169130 MB    Passed
    Checking monitor: must be configured to display at least 256 colors.    Actual 16777216    Passed
    Preparing to launch Oracle Universal Installer from /tmp/OraInstall2013-11-20_04-11-10AM. Please wait ...adevaia                                                        @soa-odi-dev1:/u02/app/Oracle/Middleware/AIAHOME/bin$ [WARN ][jrockit] MaxPermSize=256m ignored: Not a valid opt                                                        ion for JRockit
    Log: /u01/app/oraInventory/logs/install2013-11-20_04-11-10AM.log
    The command line argument(s) "weblogicConfig" or the install mode specified is not valid.
    Copyright (c) 1999, 2011, Oracle and/or its affiliates. All rights reserved.
    Usage:
    config.sh [-mode] [-options] [(<CommandLineVariable=Value>)*]
    Where mode include:
    [Mode is a mandatory parameter. Only one mode can be specified.]
         -silent For silent mode operations, the inputs can be a response file or a list of
                  command line variable value pairs.
    Where options include:
         -help, --help, --usage
                  Displays above usage.
         -invPtrLoc <inventory pointer file>
                  Launches the installer with a custom inventory location. The invPtrLoc
                  should point to a file which contains the following information.
                  inventory_loc=<inventory_location>
                  inst_group=<group_name>
         -response, -responseFile <response file>
                  Specifies the response file and path to use.
         -jreLoc <location>
                  Path where Java Runtime Environment is installed. OUI cannot be run without
                  it.
         -logLevel <level>
                  To filter log messages that have a lesser priority level than <level>.
                  Valid options are: severe, warning, info, config, fine, finer, finest,
                  basic, general, detailed, trace. The use of basic, general, detailed, trace
                  is deprecated.
         -debug  For getting the debug information from OUI.
         -force  Allowing silent mode installation into a non-empty directory.
         -printdiskusage
                  Log debug information for disk usage.
         -printmemory
                  Path where Java Runtime Environment is installed. OUI cannot be run without
                  it.
         -printtime
                  Log debug information for time usage.
         -waitforcompletion
                  For windows. setup.exe will wait for completion instead of spawning the
                  java engine and exiting.
         -noconsole
                  For suppressing display of messages to console. Console is not allocated.
         -ignoreSysPrereqs
                  For ignoring the results of the system pre-requisite checks.
         -executeSysPrereqs
                  Execute system pre-requisite checks and exit.
         -paramFile <location of file>
                  Specify location of oraparam.ini file to be used by OUI.
         -novalidation
                  Disables the validations, can be invoked along with GUI or silent mode.
         -nodefaultinput
                  Disables the default computation of values (pre-populating of values when
                  screen is loaded) in GUI install.
         -nocheckForUpdates
                  To disable all updates checking
         -updatesDir
                  To specify the directory where latest updates are downloaded. This could be
                  used in disconnected mode.
    Command Line Variables Usage:
              Command line variables are specified using <name=value>; for example:
                  [ session: | session:compName: | session:compName:version: ]variableName=" valueOfVariable"]
              Installer variables are specified using:
                  varName=value
                  Ex: ORACLE_HOME=<value>
              OUI Session variables are specified using:
                  session:varName=value
                  Ex: session:VARIABLE_NAME=<value>
              OUI Component variables are specified using:
                  session:compInternalName:[Version:]varName
                  Ex 1: session:oracle.comp1:1.0.1:varName=<value>
                  Ex 2: session:oracle.comp1:varName=<value>
                  The lookup order is compInternalName:Version:varName, then compInternalName:varName
    do anyone had any idea on this.
    Thanks a lot,
    RR.

    try checking relevant environment variables like the CLASSPATH.... a major source of failures in Windows is when in the classpath there is a path containing SPACES.... also enabling some "debug" or "verbose" flag (not sure how to do it) would provide more insight...

  • Error Error oracle.iam.platform.context.ContextManager BEA-000000 IAM-0030007 org.xml.sax.SAXParseException: Line 1, Column 1 : XML-20108: (Fatal Error) Start of root element expected. error in oim logs

    Hi ,
    I am getting the below error at times in oim logs not able to find the reason please help.
    <Error> <oracle.iam.platform.context.ContextManager> <BEA-000000> <IAM-0030007
    org.xml.sax.SAXParseException: <Line 1, Column 1>: XML-20108: (Fatal Error) Start of root element expected.
        at oracle.xml.parser.v2.XMLError.flushErrorHandler(XMLError.java:422)
        at oracle.xml.parser.v2.XMLError.flushErrors1(XMLError.java:287)
        at oracle.xml.parser.v2.NonValidatingParser.parseRootElement(NonValidatingParser.java:414)
        at oracle.xml.parser.v2.NonValidatingParser.parseDocument(NonValidatingParser.java:355)
        at oracle.xml.parser.v2.XMLParser.parse(XMLParser.java:226)
    <XELLERATE.DATABASE> <BEA-000000> <Class/Method: tcDataBaseClient/bindToInstance encounter some problems: java.lang.ClassNotFoundException: weblogic/jndi/WLInitialContextFactory
    oracle.iam.platform.utils.ServiceInitializationException: java.lang.ClassNotFoundException: weblogic/jndi/WLInitialContextFactory
        at oracle.iam.platform.Platform.getService(Platform.java:265)
        at oracle.iam.platform.OIMInternalClient.getService(OIMInternalClient.java:188)
        at com.thortech.xl.dataaccess.tcDataBaseClient.bindToInstance(tcDataBaseClient.java:151)
        at com.thortech.xl.client.dataobj.tcDataBaseClient.recoverConnection(tcDataBaseClient.java:401)
        at com.thortech.xl.client.dataobj.tcDataBaseClient.getInterface(tcDataBaseClient.java:385)
        at com.thortech.xl.dataaccess.tcDataBaseClient.close(tcDataBaseClient.java:349)
        at com.thortech.xl.server.tcDataBaseClient.close(tcDataBaseClient.java:62)
        at com.thortech.xl.server.tcDataBaseClient.finalize(tcDataBaseClient.java:43
    Caused By: java.lang.ClassNotFoundException: weblogic/jndi/WLInitialContextFactory
        at java.lang.Class.forName0(Native Method)
        at java.lang.Class.forName(Class.java:247)
        at com.sun.naming.internal.VersionHelper12.loadClass(Ve
    <Class/Method: tcDataBaseClient/getInterface encounter some problems: RuntimeException encountered. Reconnecting!
    java.lang.NullPointerException
        at oracle.iam.platform.context.ContextManager.getCounter(ContextManager.java:697)
        at oracle.iam.platform.context.ContextManager.incrementCounter(ContextManager.java:684)
    <Error> <XELLERATE.DATABASE> <BEA-000000> <Class/Method: tcDataBaseClient/close encounter some problems: Bean has been deleted.
    javax.ejb.NoSuchEJBException: Bean has been deleted.
    Thanks,
    Sahana

    hi Antara
    about "... Though I have imported the following JDK parsers in the code , the Oracle's SAX parser is taking other inside the application server ..."
    If you have used the SAXParserFactory.newSAXParser() method to get a parser, the documentation for this method says "Creates a new instance of a SAXParser using the currently configured factory parameters.".
    So you might get a different parser in a different environment.
    regards
    Jan Vervecken

  • MAKEPKG -c error - PKGBUILD: line 32: patch: command not found

    Hello all,
    Well I am getting the above error when running the makepkg -c as user in my local abs tree i am using
    [devnull@myhell chromium]$ makepkg -c
    ==> Making package: chromium 0.9.12-6  (Sun Mar 30 01:43:39 EDT 2008)
    ==> Checking Runtime Dependencies...
    ==> Checking Buildtime Dependencies...
    ==> Retrieving Sources...
      -> Found chromium-src-0.9.12.tar.gz in build dir
      -> Found chromium-data-0.9.12.tar.gz in build dir
      -> Found 0.9.12-gcc3-gentoo.patch in build dir
      -> Found 0.9.12-freealut.patch in build dir
      -> Found 0.9.12-configure.patch in build dir
      -> Found 0.9.12-png.patch in build dir
      -> Found chromium.sh in build dir
      -> Found chromium.png in build dir
      -> Found chromium.desktop in build dir
    ==> Validating source files with md5sums...
        chromium-src-0.9.12.tar.gz ... Passed
        chromium-data-0.9.12.tar.gz ... Passed
        0.9.12-gcc3-gentoo.patch ... Passed
        0.9.12-freealut.patch ... Passed
        0.9.12-configure.patch ... Passed
        0.9.12-png.patch ... Passed
        chromium.sh ... Passed
        chromium.png ... Passed
        chromium.desktop ... Passed
    ==> Extracting Sources...
      -> bsdtar -x -f chromium-src-0.9.12.tar.gz
      -> bsdtar -x -f chromium-data-0.9.12.tar.gz
    ==> Removing existing pkg/ directory...
    ==> Entering fakeroot environment...
    ==> Starting build()...
    PKGBUILD: line 32: patch: command not found
    ==> ERROR: Build Failed.
        Aborting...
    Here is a cut from PKBUILD file line 32:
    build(){
      cd $startdir/src/Chromium-0.9
      patch -p0 -i ../0.9.12-gcc3-gentoo.patch || return 1   <--- This is line 32 from pkbuild file
      patch -p0 -i ../0.9.12-freealut.patch || return 1
      #patch -p0 -i ../0.9.12-configure.patch || return 1
      patch -p0 -i ../0.9.12-png.patch || return 1
    Thanks you in advance for all your help

    Hello,
    /devnull.nsb wrote:
    Hello all,
    *snip*
    PKGBUILD: line 32: patch: command not found
    ==> ERROR: Build Failed.
        Aborting...
    *snip*
    It looks like you might not have patch installed.  What happens when you type
    pacman -Q patch
    If you get an error that the patch package is not found, install base-devel.

  • How to start a J2EE application in command line?

    Dear all,
    As known to all, in Visual Administrator we can start or stop an application in Deploy node easily.
    my question is - Is there any command can we use in command line to start/stop an application like 'startapp.bat sap.com/app1' or 'java xxx.jar startApp sap.com/app1'?
    Because we want to write a script to restart a certain application in schedule, any idea?
    Thank you in advance.

    Hi
    How to programatically start j2ee application/service  from command line
    Regards
    Sat
    Edited by: Satya Narayana on Oct 11, 2009 9:25 AM

  • Error(1,1): Line 1, Column 1 : XML-20108: (Fatal Error) Start of root elem

    Hi
    Plz tell me the solution of the following error .
    D:\JDeveloperOAF\jdevhome\jdev\myhtml\OA_HTML\WEB-INF\web.xml
    Error(1,1): <Line 1, Column 1>: XML-20108: (Fatal Error) Start of root element expected.
    D:\JDeveloperOAF\jdevhome\jdev\myhtml\OA_HTML\test_fwktutorial.jsp
    Error: java.lang.NullPointerException

    Where r u getting the error?
    --Shiv                                                                                                                                                                                                                           

  • Remittance challan creating-error no tax line item

    hi
    while creating remitance challan it showing error '' no tax line item exist''
    tax line item showing open item that too i have posted in last month first1.8.2008.to day i am creating challan but it is showing that error
    thank you
    sowmya

    Hi
    I hope you've checked the business place entered in J1INCHLN. If yes, then check what is the recepient type filled in your Vendor masters ? May be the recepient type you are typing in J1INCHLN is different from that of the vendor master
    regards
    Parag  Bhargava

  • HELP! Installer_Script_Springboard__: line 13: s: command not found ERROR

    got this error in the Installer log while using the upgrading option to Leopard. After that the installation just stalled and did not move. I have tried more than a few times. and same results. Can ANYONE PLEASE HELP ? Below is the error message
    Oct 27 05:48:23 localhost runner150: _Installer_Script_Springboard_163: /Volumes/Reddy`s HD/private/tmp/scripts.VaIV/_Installer_Script_Springboard_: line 13: s: command not found
    Oct 27 05:48:23 localhost runner150: _Installer_Script_Springboard_163:
    Oct 27 05:56:19 localhost Unknown67: 2007-10-27 05:56 Mac OS X Installer143 (CarbonCore.framework) FSEventStreamStart: ERROR: FSEvents_connect() => Unknown service name (1102)
    Oct 27 05:56:21 localhost OSInstaller143: installAutoFSMonitor: open failed

    Hi!
    After 6 hours of experimenting, disconnecting devices, formatting my hard drive (joy!) and getting nowhere, I found the problem: apparently, Leopard has trouble dealing with some characters in the volume name (in my case it was '). Rename the volume to something simple, short and with no weird characters and the Leopard will install.
    And, to Apple: I'm very disappointed with the quality of the Leopard install. If a character is valid in OS X, the setup should support it!
    Best regards,
    IYan

  • Error starting Web Start App: automation server cannot create object

    When starting Web Start Application without java installation just by starting javaws xyz.jnlp in Windows2000 there comes 2 times the Error Message "Microsoft JScript: automation server cannot create object", but the application starts nevertheless.
    Where does this error come from?
    How can we avoid it?

    see:
    http://forum.java.sun.com/thread.jspa?threadID=639218&tstart=10
    this dialog is thrown from the IE javascript engine when Java Web Start tries to invoke it to resolve the correct proxy for a given URL using the configured PAC file.
    /Andy

  • I will starting afresh website in my iWeb, it shows only the head or the command line and the command new website is inactive - what do I need to start over

    Help........
    I will starting afresh website in my iWeb, when I start the program it only shows the head or the command line and the command new website is inactive - what do I need to start over - what have I done wrong

    Don't quite understand what you mean, but it says at the bottom that you are still using iWeb 08 so depending on what OSX you are running, you might consider upgrading to iWeb 09.  This works with Lion, Mountain Lion and Mavericks.
    Apple no longer sells iWeb so if you decide to upgrade, then you'll need to purchase iWeb by going to Amazon and buying the iLife 09 or 11 boxed sets, both of which contain iWeb 09.
    Install this on your Mac and it might solve your problems, or just ditch iWeb and start again with one of the newer programmes out there that are still being supported and updated, such as RapidWeaver, Sandvox, Freeway Pro/Express, Flux 4, WebAcapella 4 and EverWeb (http://www.everwebapp.com).

  • HT4314 Game Center problem. When I try to start a new Letterpress game, I get the message "Unable to create match please try again later. When I press "OK" I get the following message, " Error starting game. The requested operation could not be completed

    ...I get the following message, "Error starting game. The requested operation could not be completed because local player has not been authenticated".
    Can anyone advise me how to resolve this please?

    You should contact the developer of the game for assistance.

Maybe you are looking for