SQL 2000 XML Support

I have a simple SQL from which i get XML data from the SQL 2000 Database.
SQL :
select * from customer for xml auto
I would like to execute the SQL thru JDBC, but i am getting the following error
java.sql.SQLException: [MERANT][SequeLink JDBC Driver][SQL Server]The FOR XML clause is not allowed in a CURSOR statement.
Note : I am using merant driver.
Any info on this is greatly appreciated.
Thanks in advance

Get rid of the selectMethod=cursor from your connection Url
eg. if you have a Connection String like
jdbc:microsoft:sqlserver://yourserver:portnum;database=mydatabae;selectMethod=cursor;

Similar Messages

  • Full list of MS SQL 2000 features that are supported in compatibilty 80 mode but not available in 2008 R2 compatibility 100

    Hello Everyone,
    Could you possibly suggest where I can find a full list MS SQL 2000 features that are supported in 2008 R2 compatibilty 80 mode but not available in  compatibility 100?
    Thanks
    SSIS question

    Hi Tom,
    What you are saying makes sense, if the compatibility level is 90 then the old ANSI joins are expected to be rectified.
    I wrote a script to check - it's an easy exercise, all you need is to loop through the catalog views and for each SP or scalar function run this command:
    set fmtonly on exec <object> set fmtonly on and in the catch block handle the error related to compatibility.
    For checkign the views similar thing set noexec on <select top 1 * from view> set noexec off.
    This works very fast as none of the code is actually executed.
    Caveat thought  triggers and table functions. I could not find the way how to check them. so will have to extract the DDLs and just check the text for old ansi joins. Not very reliable, but that's all I can think of at the moment.
    Any chance you know how to compile a trigger or table function without running.
    For table functions when I tried set noexec on they still asked for parameters, something I was trying to avoid.
    Thanks
    SSIS question

  • How to spool the result of an query into a file in sql 2000

    Hi All,
    I have an SQL query which iterates through number of times for checking on some conditions and will return results each time. I wants to save the results into an different xml file each time. I tried using below query:
    exec xp_cmdshell 'bcp "use Mimsadaptorlogs; select top 10 * from log order by logdate" queryout "D:\cdr_cg.xml" -T -c -t,'  ---> Its not working as expected.
    I got the Below output:
    NULL
    Starting copy...
    SQLState = 01000, NativeError = 5701
    Warning = [Microsoft][ODBC SQL Server Driver][SQL Server]Changed database context to 'MIMSAdaptorlogs'.
    NULL
    10 rows copied.
    Network packet size (bytes): 4096
    Clock Time (ms.): total       62
    NULL
    Could you anuone please suggest me on this.......
    Thanks and Regards, Bala

    You will need to write a client program to do this. SQL Server is not intended for writing files. People still do it by calling BCP through xp_cmdshell, but this is a dubious practice. Better is to write a CLR stored procedure for the task. However, you
    are on SQL 2000, and the CLR support was added in SQL 2005. Furthermore, there is no XML type in SQL 2000, and the only way to generate XML is with the FOR XML clause. But this output is not well understood by BCP. Then I try: [code} bcp "SELECT * FROM Northwind..Customers
    FOR XML RAW" queryout slask.bcp -c -T [/code] on SQL 2000, I get [code] 11 rows copied. [/code] which is complete hogwash, because there are 91 rows in that table, and the output should be a single XML document, and the output looks like this: [code] <row
    CustomerID="ALFKI"... Bouchers" City="Marseil... tomerID="DUMON" Company... 0.32.21.21" Fax="40.32.... los Hern ndez" ContactT... n Steel" ContactTitle="... e" ContactTitle="Market... ="Salzburg" PostalCode=... " Phone="(21) 555-3412"... ty="Charleroi" PostalCo...
    <row CustomerID="WARTH"... [/code] I have truncated the output on the right side, but the left side is authentic. It really is that bad.
    Erland Sommarskog, SQL Server MVP, [email protected]

  • SQL 2000 - Blocking Happening again and again

    Hi  guys..
    on sql 2000 ..from today morning blocking keep happening again and again even though killed SPID .. Reastarted SQL and app server. any one has idea what will be good action item?
    also like to know scripts for sql 2000 gives detailed information about which query is blocking .
    In sp_who2 shows IIS program name as blocking 
    thanks
    Please Mark As Answer if it is helpful. \\Aim To Inspire Rather to Teach A.Shah

    Hello,
    Refer to below link
    http://support.microsoft.com/kb/224453/en-gb
    If you have Database with high concurency some blocking is inevitable ,moreover if blocking is there for few seconds its not an issue a long block is a issue though.Below query will give blocking information
    select * from sys.sysprocesses where blocked <> 0
    To check lead blocker
    IF EXISTS ( SELECT 1 FROM master.dbo.sysprocesses WHERE blocked <> 0 )
    SELECT spid,
    status,
    loginame = SUBSTRING(loginame, 1, 30),
    hostname = SUBSTRING(hostname, 1, 12),
    blk = CONVERT(char(4), blocked),
    open_tran,
    dbname = SUBSTRING(DB_NAME(dbid),1,10),
    cmd,
    waittype,
    waittime,
    last_batch
    FROM master.dbo.sysprocesses NOLOCK
    WHERE spid IN (SELECT blocked FROM master.dbo.sysprocesses)
    AND blocked = 0
    ELSE
    SELECT 'No blocking found!'
    Please mark this reply as the answer or vote as helpful, as appropriate, to make it useful for other readers

  • SQL 2000 LINKED SERVER ERROR 7303 WITH SQL 2012 ON WINDOWS SERVER 2012 R2

    Hi all,
    I have a problem with SQL Server 2012 and a linked server for SQL 2000 database.
    System specification:
    Windows server 2012 64 bit
    SQL SERVER 2012 64 bit
    REMOTE SERVER SQL 2000 32 bit
    I've installed sql native client 32bit,create a SYSTEM DSN odbc connection with "SQL Server" driver named "MYSERVER".
    Create a linked server with the query below in SQL 2012:
    EXEC master.dbo.sp_addlinkedserver @server =N'MYSERVER', @srvproduct=N'MYSERVER', @provider=N'MSDASQL', @datasrc =N'MYSERVER', @location=N'System';
    EXEC master.dbo.sp_addlinkedsrvlogin @rmtsrvname=N'MySERVER',@useself=N'True',@locallogin=NULL,@rmtuser=NULL,@rmtpassword=NULL
    GO
    but when i browse the linked server i receved error 7303.

    You need 64-bit MSDASQL. It is the bitness of the server you are connecting from that matters. 64-bit executables cannot hook into 32-bit DLL.
    However, I suspect that you will not get things to work anyway. At least I have not seen anyone this far who has been able to set up a linked server from SQL 2012 to SQL 2000. I know that when I tried this, the following providers had this result:
    SQLNCLI11 - does not support connections to SQL 2000.
    SQLNCLI10 - failed with some obscure message that I don't recall.
    SQLNCLI - Don't recall that the problem was here.
    SQLOLEDB - SQLOLEDB is always replaced with the most recent version of SQLNCLI, so this fails because of lack of support.
    I don't think I got through all version of the ODBC drivers, though.
    Erland Sommarskog, SQL Server MVP, [email protected]

  • Upgrade R/3 4.7 110 from SQL 2000 to ECC 6.0 /SQL 2005

    Dear Experts,
    We are currently running R/3 4.7 110 with kernel 640 32 Bit Non Unicode on Windows Server 2000/ MS SQL 2000 Platform. We are planning to Upgrade the same to ECC 6.0 on Windows 2003/ SQL 2005 on New x64 Bit Hardware.
    I was earlier planning to Upgrade the OS/DB in first Phase moving the same R/3 4.7 on Windows 2003 Server /MS SQL 2005 and then Upgrade it to ECC 6.0 in second phase. But to my surprise when I checked PAM, I found that R/3 4.7 110 is not at all supported on SQL 2005 ( though R/3 4.6 C is)
    Now shall I upgrade it to ECC6.0 First with Windows 2003/SQL 2000 ( Because ECC6.0 is supported with MS SQL 2000)and then move to MS SQL 2005 ?
    Thanks
    Jitendra Tayal

    We had the same issue.
    So I checked with SAP.
    This was their reply.
    'SAP R/3 4.7 Ext 110 is supported on SQL 2005. Please refer to the following notes for further information:'
    Note 905634 - Release planning for Microsoft SQL Server 2005
    Note 799058 - Setting Up Microsoft SQL Server 2005
    Note 899111 - Installing R3 4.7SR1 (47X110) on x64 Windows Platform
    Note 151603 - Copying an SQL Server database
    So feel free to go ahead.
    Thanks.
    Carl.

  • Can SQL 2000 and SQL 2005 drivers co-exist in PI?

    Hi,
    Currently in our PI environment, we have JDBC Adapter connections to SQL 2000 database servers for which the Driver has already been installed.
    For connecting to new SQL 2005 database servers, I understand that we have to install the SQL 2005 drivers. I also came to know that SQL 2005 Driver is backward compatible and supports JDBC connection to SQL 2000 server.
    But the question I have is whether both the SQL 2000 and SQL 2005 drivers can be installed together in a way that connection to SQL 2000 use the 2000 driver and the connection to 2005 uses 2005 Driver.
    (They have different connection strings)
    Many thanks in advance,
    Regards,
    Rosie Sasidharan

    The SQL Server 2005 JDBC driver is far better than the SQL Server 2000 JDBC driver.  The 2005 JDBC driver primarily consists for one file, sqljdbc.jar.  ( if you want to use windows authentication there is another file you would need based on your platform x64 vs x86 called sqljdbc_auth.dll. If in the connect string you list ;integratedSecurity=true which means integrated security would be used and this second file would be required.  The 2000 driver did not support integrated security.
    The SQL 2000 JDBC driver was made up of the 3 jar files:
    msbase.jar,mssqlserver.jar and msutil.jar.
    If you want to use a Microsoft JDBC driver to connect to SQL Server 2005, than you should use the 2005 driver, sqljdbc.jar.
    Follow the instructions in point 1 of the note #831162 - FAQ: XI 3.0 / PI 7.0 / PI 7.1 JDBC Adapter questions 1 and 13.
    Since the jar are different I assume you can use the both drivers, but it doesnt make sense.

  • JDBC Driver for SQL 2000

    Hi all,
    Does anyone knows where I can download a JDBC driver for SQL 2000?
    Would you happen to have a sample code on how to use this driver to connect to SQL 2000. Any help is greatly appreciated in advance.
    Thanks,
    Mehran

    Of course...
    http://msdn.microsoft.com/downloads/default.asp?URL=/downloads/sample.asp?url=/MSDN-FILES/027/001/779/msdncompositedoc.xml
    Good luck
    TMM

  • Connecting sql 2000 to sap NW was

    I want to develop webdynpro java  applications connecting Sql 2000 . I have done examples using R/3 , webservices etc .
    Please give me a detailed step by step guide else a good link
    Thanks in advance
    Bhat

    Thank mil.. :-) It is working...!!!No problem glad to hear it.
    By the way you can use Windows authentication (if it is a requirement) but I don't believe that driver version supports it. You can use the JTDS driver ( a free open source type 4 driver) instead because that does support Windows authentication.
    Again though.. only if you need it.

  • Installation of Golf Program requires uninstalling Microsoft SQL 2005 and installing SQL 2000

    I am running Win 7 and about to purchased a new computer with Win 8.1. 
    The USGA wrote a Tournament Program which is used nationwide called TPP (Tournament Pairing Program).  It was developed prior to XP but it is updated every time you run the update.  It runs on XP without any adjustments.  To load the program
    on Win 7 or Win 8 you are instructed to remove Microsoft SQL Server 2005, which I did.  The program loads SQL 2000 when it is installed.  I am concerned when I uninstall the TPP program that it will also uninstall SQL 2000 (which it installed) and
    then there will be no SQL server on my Win 7.
    I was going to make sure that I could install the TPP program on Win 8 (before buying another computer) by installing it on a friends new Win 8.1 computer.  But I am concerned about removing the preinstalled SQL Server program.
    1) How does one get the original Microsoft SQL Server back once it has been removed and the recycle bin has been emptied?  Does the SQL program even get sent to the recycle bin when it is removed?
    2)  Is there any harm done by removing the original SQL program be it 2005 or a new one?

    SQL 2000 is not supported on Windows 7.
    http://support.microsoft.com/kb/2028963/en-us
    whenever you uninstall SQL Server, databases files are not deleted. So you can move them to safe location. if they are delete by you then you have very less chances to recover the data.
    Balmukund Lakhani
    Please mark solved if I've answered your question, vote for it as helpful to help other users find a solution quicker
    This posting is provided "AS IS" with no warranties, and confers no rights.
    My Blog |
    Team Blog | @Twitter
    | Facebook
    Author: SQL Server 2012 AlwaysOn -
    Paperback, Kindle

  • ODBC vs. JDBC  on MS SQL 2000

    Hello,
    This is an issue we dont understand.
    We would like to connect to a MS SQL 2000 DB via JDBC adapter.
    The support guy for thsi DB told us
    "The drivers you need to install are ODBC". ????
    Now we installed a JDBC driver from microsoft page but this is the error we get when trying to connect.
    Message processing failed. Cause: com.sap.aii.af.ra.ms.api.RecoverableException: Error when attempting to get processing resources: com.sap.aii.af.service.util.concurrent.ResourcePoolException: Unable to create new pooled resource: DriverManagerException: Cannot establish connection to URL 'jdbc:sqlserver://10.60.104.99;Database=Buysite_EB02': UnsupportedClassVersionError: com/microsoft/sqlserver/jdbc/SQLServerDriver (Unsupported major.minor version 49.0)
    So it seems that the driver for MS SQL 2000 installed is not the right one?
    But what about the ODBC advice. Is this something important?
    So it is not the SQL that is important but the fact that we need to use a ODBC driver.
    But how to find that and how will the Connection parameter look like?
    Sorry to ask silly questions. But we don t really understand this issue.
    Best regards
    Dirk

    Note 639702 seems not to be the right solution:
    This is an excerpt from the FAQ OSS Note 831162
    13. JDBC Drivers
    o Q: I downloaded JDBC driver for MS SQL server from Service market
    place according to Note 639702. Can I use this driver for JDBC
    Adapter?
    o A: No. This driver can only be used from OpenSQL which is a SAP own
    database access layer for Java. This driver should not be used with
    XI JDBC adapter. Customers should download official JDBC driver
    given by Microsoft web site
    Regards
    Dirk

  • Steps to install SAP 4.7 EE with MS SQL 2000: URGENT

    Hi all Basis Guru's
    We are planning to install SAP 4.7 EE with DB: MS SQL 2000 on our new IBM server, we are already running a SAP server on our OLD SERVER and we just want to install the same in the NEW IBM SERVER for which i am seeking some expert help.
    I wanted a document which can show me the steps to install SAP 4.7 and also MS SQL 2000,
    I have pdfs released by SAP which i got from service market place under instguides section, but they are not soo helpful as i am a jr consultant the termninology used by them is not in my understanding..
    So i request all, to send in a document which can easily assist me in installing SAP 4.7 and Ms SQL 2000 in step by step process
    Also is it neessary for me to install the SP3 for Ms SQL 2000.
    Reward points for sure...
    Plz do help me in this as,  this task has to be completed by 03-08-07 EOD.
    Million Thanks in Advance
    Regards
    Hari Haran.V

    Hi Juan,
    I have done all the pre-installation steps accoring to the SAP released doc from the service market place...
    but i get an error during the installation of the CI...(this is happening at the time of  <i><b>EXTRA SAP SYSTEM KERNAL ARCHIVES</b></i>)
    Here is the detailed LOG of the error.....
    INFO 2007-08-02 18:50:39
    Processing of host operation t_HostInfo_SHARED succeeded.
    INFO 2007-08-02 18:50:47
    The 'saploc' share exists at directory 'C:\usr\sap'. Choosing drive C: as SAP System drive.
    INFO 2007-08-02 18:51:13
    Successfully connected to PDPLMAIN\PDPLMAIN
    INFO 2007-08-02 18:51:13
    Executing check Product Version ...
    INFO 2007-08-02 18:51:13
    Script "Product Version" successfully executed
    INFO 2007-08-02 18:51:13
    Executing check Product Patch ...
    INFO 2007-08-02 18:51:13
    Script "Product Patch" successfully executed
    INFO 2007-08-02 18:51:13
    Executing check Product Edition ...
    INFO 2007-08-02 18:51:13
    Script "Product Edition" successfully executed
    INFO 2007-08-02 18:51:13
    Executing check Collation ...
    INFO 2007-08-02 18:51:13
    Script "Collation" successfully executed
    INFO 2007-08-02 18:51:13
    Executing check SysAdmin Rights ...
    INFO 2007-08-02 18:51:13
    Script "SysAdmin Rights" successfully executed
    INFO 2007-08-02 18:51:13
    Successfully connected to PDPLMAIN\PDPLMAIN
    INFO 2007-08-02 18:51:13
    Executing check Database existance ...
    INFO 2007-08-02 18:51:13
    Script "Database existance" successfully executed
    INFO[E] 2007-08-02 18:51:36
    Account group="pdplmain\SAP_LDAP" does not exist. <#1>
    INFO[E] 2007-08-02 18:51:37
    Account group="ORA_PD0_DBA" does not exist. <#1>
    INFO[E] 2007-08-02 18:51:37
    Account group="ORA_PD0_OPER" does not exist. <#1>
    INFO[E] 2007-08-02 18:51:49
    Account group="pdplmain\dbpd0ctl" does not exist. <#1>
    PHASE 2007-08-02 18:57:16
    SAP Web Application Server
    PHASE 2007-08-02 18:57:16
    Request common parameters of SAP System
    PHASE 2007-08-02 18:57:17
    Collecting information on database configuration
    PHASE 2007-08-02 18:57:17
    Create operating system accounts
    INFO 2007-08-02 18:57:17
    Copying file C:/SAPinst MSSQL SAPINST/keydb.xml to: C:/SAPinst MSSQL SAPINST/keydb.1.xml.
    INFO 2007-08-02 18:57:17
    Creating file C:\SAPinst MSSQL SAPINST\keydb.1.xml.
    INFO 2007-08-02 18:57:18
    Copying file C:/SAPinst MSSQL SAPINST/product.xml to: C:/SAPinst MSSQL SAPINST/product.1.xml.
    INFO 2007-08-02 18:57:18
    Creating file C:\SAPinst MSSQL SAPINST\product.1.xml.
    PHASE 2007-08-02 18:57:33
    Preparing OS account for MCOD installation
    PHASE 2007-08-02 18:57:33
    Request operating system user information
    PHASE 2007-08-02 18:57:33
    Request operating system user information
    PHASE 2007-08-02 18:57:33
    Request operating system user information
    PHASE 2007-08-02 18:57:33
    Request operating system user information
    PHASE 2007-08-02 18:57:33
    Request operating system user information
    PHASE 2007-08-02 18:57:33
    Request operating system user information
    PHASE 2007-08-02 18:57:33
    Request operating system user information
    PHASE 2007-08-02 18:57:33
    Request operating system user information
    PHASE 2007-08-02 18:57:33
    Request operating system user information
    PHASE 2007-08-02 18:57:33
    Request operating system user information
    PHASE 2007-08-02 18:57:33
    Request operating system user information
    PHASE 2007-08-02 18:57:33
    Request operating system user information
    PHASE 2007-08-02 18:57:33
    Request operating system user information
    PHASE 2007-08-02 18:57:33
    Request operating system user information
    PHASE 2007-08-02 18:57:34
    Request operating system user information
    PHASE 2007-08-02 18:57:34
    Request operating system user information
    PHASE 2007-08-02 18:57:34
    Request operating system user information
    PHASE 2007-08-02 18:57:34
    Request operating system user information
    INFO 2007-08-02 18:57:35
    Successfully added privileges 'SeTcbPrivilege SeAssignPrimaryTokenPrivilege SeIncreaseQuotaPrivilege' to account 'S-1-5-21-1801674531-606747145-839522115-500' on host 'pdplmain'!
    INFO 2007-08-02 18:57:35
    Successfully added privileges 'SeTcbPrivilege SeAssignPrimaryTokenPrivilege SeIncreaseQuotaPrivilege' to account 'S-1-5-21-1801674531-606747145-839522115-500' on host 'pdplmain'!
    INFO 2007-08-02 18:57:35
    Successfully added privileges 'SeTcbPrivilege SeAssignPrimaryTokenPrivilege SeIncreaseQuotaPrivilege' to account 'S-1-5-21-1801674531-606747145-839522115-500' on host 'pdplmain'!
    INFO 2007-08-02 18:57:36
    Evaluating all 'tNT_RegistryEntries' table rows succeeded.
    PHASE 2007-08-02 18:57:38
    Preparing DBMS-specific environment variables
    WARNING 2007-08-02 18:57:38
    Error 1332 (No mapping between account names and security IDs was done.
    ) in execution of a 'SetEntriesInAcl' function, line (661), with parameter ().
    INFO 2007-08-02 18:57:38
    Creating or updating all NT registry entries from the tNT_RegistryEntries table succeeded.
    INFO 2007-08-02 18:57:39
    Creating or updating all NT registry entries from the tNT_RegistryEntries table succeeded.
    INFO 2007-08-02 18:57:41
    Creating or updating all NT registry entries from the tNT_RegistryEntries table succeeded.
    INFO 2007-08-02 18:57:42
    Creating or updating all NT registry entries from the tNT_RegistryEntries table succeeded.
    INFO 2007-08-02 18:57:44
    Creating or updating all NT registry entries from the tNT_RegistryEntries table succeeded.
    INFO 2007-08-02 18:57:45
    Creating or updating all NT registry entries from the tNT_RegistryEntries table succeeded.
    INFO 2007-08-02 18:57:46
    Creating or updating all NT registry entries from the tNT_RegistryEntries table succeeded.
    INFO 2007-08-02 18:57:47
    Creating or updating all NT registry entries from the tNT_RegistryEntries table succeeded.
    INFO 2007-08-02 18:57:48
    Creating or updating all NT registry entries from the tNT_RegistryEntries table succeeded.
    INFO 2007-08-02 18:57:49
    Creating or updating all NT registry entries from the tNT_RegistryEntries table succeeded.
    INFO 2007-08-02 18:57:50
    Creating or updating all NT registry entries from the tNT_RegistryEntries table succeeded.
    INFO 2007-08-02 18:57:51
    Creating or updating all NT registry entries from the tNT_RegistryEntries table succeeded.
    INFO 2007-08-02 18:57:51
    Creating or updating all NT registry entries from the tNT_RegistryEntries table succeeded.
    INFO 2007-08-02 18:57:52
    Creating or updating all NT registry entries from the tNT_RegistryEntries table succeeded.
    INFO 2007-08-02 18:57:53
    Creating or updating all NT registry entries from the tNT_RegistryEntries table succeeded.
    INFO 2007-08-02 18:57:53
    Creating or updating all NT registry entries from the tNT_RegistryEntries table succeeded.
    INFO 2007-08-02 18:57:54
    Creating or updating all NT registry entries from the tNT_RegistryEntries table succeeded.
    INFO 2007-08-02 18:57:55
    Creating or updating all NT registry entries from the tNT_RegistryEntries table succeeded.
    PHASE 2007-08-02 18:57:55
    Adapt filesystem
    PHASE 2007-08-02 18:57:55
    Prepare check/adapt SAP instance filesystem
    INFO 2007-08-02 18:57:55
    Processing of all file system node operations of table t_SAPComponent_Filesystem_Action_SHARED succeeded.
    INFO 2007-08-02 18:57:56
    File system node C:\usr\sap/prfclog exists already. Nothing to do.
    INFO 2007-08-02 18:57:56
    File system node C:\usr\sap/PD0 exists already. Nothing to do.
    INFO 2007-08-02 18:57:56
    File system node C:\usr\sap/PD0/DVEBMGS00 exists already. Nothing to do.
    INFO 2007-08-02 18:57:56
    File system node C:\usr\sap/PD0/DVEBMGS00/data exists already. Nothing to do.
    INFO 2007-08-02 18:57:56
    File system node C:\usr\sap/PD0/DVEBMGS00/data/cache exists already. Nothing to do.
    INFO 2007-08-02 18:57:56
    File system node C:\usr\sap/PD0/DVEBMGS00/exe exists already. Nothing to do.
    INFO 2007-08-02 18:57:56
    File system node C:\usr\sap/PD0/DVEBMGS00/log exists already. Nothing to do.
    INFO 2007-08-02 18:57:56
    File system node C:\usr\sap/PD0/DVEBMGS00/sec exists already. Nothing to do.
    INFO 2007-08-02 18:57:56
    File system node C:\usr\sap/PD0/DVEBMGS00/work exists already. Nothing to do.
    INFO 2007-08-02 18:57:56
    File system node C:\usr\sap/PD0/SYS exists already. Nothing to do.
    INFO 2007-08-02 18:57:56
    File system node C:\usr\sap/PD0/SYS/exe exists already. Nothing to do.
    INFO 2007-08-02 18:57:56
    File system node C:\usr\sap/PD0/SYS/exe/opt exists already. Nothing to do.
    INFO 2007-08-02 18:57:56
    File system node C:\usr\sap/PD0/SYS/exe/dbg exists already. Nothing to do.
    INFO 2007-08-02 18:57:56
    File system node C:\usr\sap/PD0/SYS/exe/run exists already. Nothing to do.
    INFO 2007-08-02 18:57:56
    File system node C:\usr\sap/PD0/SYS/gen exists already. Nothing to do.
    INFO 2007-08-02 18:57:56
    File system node C:\usr\sap/PD0/SYS/gen/dbg exists already. Nothing to do.
    INFO 2007-08-02 18:57:56
    File system node C:\usr\sap/PD0/SYS/gen/opt exists already. Nothing to do.
    INFO 2007-08-02 18:57:56
    File system node C:\usr\sap/PD0/SYS/global exists already. Nothing to do.
    INFO 2007-08-02 18:57:56
    File system node C:\usr\sap/PD0/SYS/profile exists already. Nothing to do.
    INFO 2007-08-02 18:57:56
    File system node C:\usr\sap/PD0/SYS/src exists already. Nothing to do.
    INFO 2007-08-02 18:57:56
    File system node C:\usr\sap/tmp exists already. Nothing to do.
    INFO 2007-08-02 18:57:56
    File system node C:\usr\sap\trans exists already. Nothing to do.
    INFO 2007-08-02 18:57:56
    File system node C:\usr\sap\trans/tmp exists already. Nothing to do.
    INFO 2007-08-02 18:57:56
    File system node C:\usr\sap\trans/EPS exists already. Nothing to do.
    INFO 2007-08-02 18:57:56
    File system node C:\usr\sap\trans/EPS/in exists already. Nothing to do.
    INFO 2007-08-02 18:57:56
    File system node C:\usr\sap\trans/EPS/out exists already. Nothing to do.
    INFO 2007-08-02 18:57:56
    File system node C:\usr\sap\trans/EPS/log exists already. Nothing to do.
    INFO 2007-08-02 18:57:56
    File system node C:\usr\sap\trans/bin exists already. Nothing to do.
    INFO 2007-08-02 18:57:56
    File system node C:\usr\sap\trans/buffer exists already. Nothing to do.
    INFO 2007-08-02 18:57:56
    File system node C:\usr\sap\trans/cofiles exists already. Nothing to do.
    INFO 2007-08-02 18:57:56
    File system node C:\usr\sap\trans/data exists already. Nothing to do.
    INFO 2007-08-02 18:57:56
    File system node C:\usr\sap\trans/etc exists already. Nothing to do.
    INFO 2007-08-02 18:57:56
    File system node C:\usr\sap\trans/log exists already. Nothing to do.
    INFO 2007-08-02 18:57:56
    File system node C:\usr\sap\trans/sapnames exists already. Nothing to do.
    INFO 2007-08-02 18:57:56
    Copying file H:/sapinst_mssql/NT/I386/UNINSAP.EXE to: C:\usr\sap\PD0\SYS\exe\run\..\UNINSTSAP.EXE.
    INFO 2007-08-02 18:57:56
    Copying file system node H:/sapinst_mssql\NT\I386\UNINSAP.EXE with type NODE to C:\usr\sap\PD0\SYS\exe\run\..\UNINSTSAP.EXE succeeded.
    INFO 2007-08-02 18:57:56
    Processing of all file system node operations of table t_SAPComponent_Filesystem_Action_SHARED succeeded.
    INFO 2007-08-02 18:57:57
    Processing of all file system node operations of table t_SAPComponent_Filesystem_Action_SHARED succeeded.
    INFO 2007-08-02 18:57:58
    Creating of all NT shares while processing the table 'tNT_SHARE' succeeded.
    INFO 2007-08-02 18:57:58
    Creating of all NT shares while processing the table 'tNT_SHARE' succeeded.
    WARNING 2007-08-02 18:57:59
    The specified service does not exist as an installed service.
    ! Error in execution of a 'OpenService' function, line (286), with parameter(s) (SAPPD0_00).
    WARNING 2007-08-02 18:57:59
    The specified service does not exist as an installed service.
    ! Error in execution of a 'OpenService' function, line (286), with parameter(s) (SAPOsCol).
    PHASE 2007-08-02 18:57:59
    Extract archives
    INFO 2007-08-02 18:58:00
    Processing of all file system node operations of table t_SAPComponent_Archives_FORMS_SHARED succeeded.
    PHASE 2007-08-02 18:58:01
    Extract SAP System kernel archives
    INFO 2007-08-02 18:58:01
    Creating file C:\SAPinst MSSQL SAPINST\SAPEXE.SAR.log.
    ERROR 2007-08-02 18:58:01
    MOS-01021  PROBLEM: .\sapcar.exe -xvgf H:\SAP_KERNEL_MSSQL_IA64/NT/I386/SAPEXE.SAR, -R C:\usr\sap\PD0\SYS\exe\run returned with '29'. CAUSE: See output './SAPEXE.SAR.log'. SOLUTION: Solve the CAUSE and retry.
    ERROR 2007-08-02 18:58:01
    FJS-00012  Error when executing script.
    Waiting to hear from at the earliest
    Regards
    Hari haran.v

  • Migrate SQL 2000 to SQL 2008

    Hi,
      My company needs to migrate SQL 2000 to SQL 2008.  The SQL 2000 server is running on Windows 2000 server and SQL 2008 does not support Windows 2000 server, so we can't upgrade it to SQL 2008.  Also, double upgrade (SQL 2000->SQL 2005->SQL 2008) is not an option, because we have a very very short time frame.
      The only option I can think of is manually copy everything from SQL 2000 to SQL 2008.  This is ok for tables, views, stored procedures, and functions, but how about triggers, DTS packages, and jobs?
      Is there a good tool out there can copy triggers, DTS packages, and jobs?  Or can somebody recommend another way to migrate SQL 2000 to SQL 2008?
    Thanks,
    Wei

    You can Save AS dts as a file and open on the new server . Read about DTS Designer tool to run the packages
    https://technet.microsoft.com/en-us/library/aa225178%28v=sql.80%29.aspx
    All jobs AFAIK you can script out and re-run on the destination server
    Best Regards,Uri Dimant SQL Server MVP,
    http://sqlblog.com/blogs/uri_dimant/
    MS SQL optimization: MS SQL Development and Optimization
    MS SQL Consulting:
    Large scale of database and data cleansing
    Remote DBA Services:
    Improves MS SQL Database Performance
    SQL Server Integration Services:
    Business Intelligence

  • SQL Azure indexer support for Collection(Edm.String)

    Is there a plan to support "Collection(Edm.String)
    " with a SQL Azure indexer? Maybe via an XML type?
    Unless I'm misunderstanding the supported types
    https://msdn.microsoft.com/en-us/library/azure/dn946880.aspx
    It sort of fizzles out after "time, timespan" but I'm assuming it's Not Supported's all the way down

    http://feedback.azure.com/forums/263029-azure-search/suggestions/7189214-sql-azure-indexer-support-for-collection-edm-strin
    Was going to start there but just wanted to vet that it indeed wasn't there.... I realize it's a bit awkward and anti - sql storing data like that in a column and will probably annoy DBAs.
     Currently the data we'd use this for would be Customer phone numbers, addresses, VIN for vehicles, and some account numbers... So nothing super fancy...   Straight delimiters might get funky with addresses but maybe a standard backspace escape
    sequence or letting user use ascii hexcode if the delimiter is in the text..  
    For now we already have a comma separated SearchText field we've indexed for use with FTS and I just pointed an Edm.string at that column in our DB and it seems to pick up all the comma separated elements... But I'm guessing it's not as efficient as if it
    was stored in more specific collections.

  • SAP 2007 A and SQL 2000

    I understand that SAP no longer supports SQL Server 2000, but could someone confirm whether I can still still install and run SAP 2007 with a SQL Sevrer 2000 database?

    Hi John,
    please have a look at the 'Product availability' landing page (Channel Partner Portal -> Solutions -> SAP Business One -> Product Availability):
    Apr 17 | Microsoft Has Retired its Mainstream Support for SQL 2000 as of April 8, 2008.
    For SAP Business One users still running their installation on SQL 2000, this means no new functionality or Service Packs. Microsoft will continue to provide bug fixes and security fixes on demand only. We therefore recommend that customers upgrade their SQL installation to 2005 as soon as possible. Refer to SAP Note 928839 for additional information.
    You will also see in the 'server' section that SQL 2000 is not supported for SAP Business One 2007.
    All the best,
    Kerstin

Maybe you are looking for