MS SQL server 2000 to 2005 migration

Hi Experts,
My application is developed in jdk1.4 and JRUN using MS SQL server 2000.Now I want to upgrade with MS SQL server 2005
Few questions here:
1) How can I achieve this ?
2) Is jdk 1.4 compatible with MS SQL Server 2005 ?
3) How can I change the driver?
Thanks
Harshmeet

Hi Harshmeet,
As your application is not SAP, please follow the steps in the link below for upgrade
how can I upgrade SQL server 2000 to SQL server 2005 sp2 - SQL Server - www.windows-noob.com
For JDK support refer link below
using Microsoft SQL Server 2005 JDBC Driver with JDK 1.3 (or JRE 1.3)
Hope this helps.
Regards,
Deepak Kori

Similar Messages

  • Unable to install SQL server 2000 and 2005 on Satellite A205-s5831

    Hello everyone.
    I Needs some helps from all of you.
    I have Toshiba Laptop Satellite A205-S5831.
    Its Have Windows Vista Home Premium.
    And I am unable to install SQL server 2000 and 2005.
    I also Unable to Install Windows XP SP2.
    Problem is SATA driver.
    Plz Help me ...!
    Response me

    Hi
    The Windows XP needs a SATA driver if you want to install it on the notebook with SATA HDD controller.
    The SATA driver can be found in the Intel Storage Manager.
    I would recommend using the nLite program to include a SATA driver into the new Windows XP CD and then to boot from the new created XP CD.
    Here you will find all details regarding the nLite:
    http://www.nliteos.com/
    Regarding SQL server issue;
    Maybe you will be able to install in on Windows XP. Possibly there is a compatibility issue between the Vista and the SQL server software

  • BO 6.5 switching from SQL Sql Server 2000 to 2005

    Need information for BO 6.5 on issues switching from Sql Server 2000 to Sql Server 2005.
    Thanks in advance for any information!

    If you're migrating the Repository database as well from SQL 2000 to SQL 2005, you need to also to update the security files by taking the steps below:
    1. Stop the server
    2. Rename the existing security files (bomain.key and bomain.lsi)
    3. Run the Safe Recovery to regenerate a new bomain.key
    4. Run the Scan, Repair and Compact of the Repository
    5. Copy the new bomain.key to the locdata located at u2026\nodes\<server>\<cluster>\locdata
    Regards,
    Jeff

  • Resource Breaks When Upgrade from SQL Server 2000 to 2005 - Help!

    I have a resource that connects to mutiple databases:
    <ResourceAttribute name='Databases' displayName='com.waveset.adapter.RAMessages:RESATTR_DATABASES'
    description='com.waveset.adapter.RAMessages:RESATTR_DATABASES_HELP' multi='true'>
    <value>dbOne</value>
    <value>dbTwo</value>
    <value>Employee_Info</value>
    </ResourceAttribute>
    It all works fine when the backend SQL server is 2000, but since we've upgraded it to 2005, the connection fails with this error:
    Test connection failed for resource(s):MenuSQL: Required database dbOne not found.MenuSQL: Required database dbTwo not found.MenuSQL: Required database Employee_Info not found.
    I'm using the MS SQL JDBC driver for 2005 and I've verified that my connection url is good:jdbc:sqlserver://%h:%p;databaseName=%d;integratedSecurity=true; where %h and %p are the correct host and ports.
    I turned on tracing of com.waveset.adapter.MSSQLServerResourceAdapter and com.waveset.adapter.JdbcResourceAdapter and I don't see any errors or issues reported.
    If I set it back to connect to the SQL 2000 databases, it works. If I change it to only connect to one database, rather than 3 it works. However, I need this working on 2005 with all three databases. Any ideas on what I can look at or how I can further troubleshoot this?
    Thanks in advance for any help!

    Turns out the driver I'm using is fine (sqljdbc.jar). The problem is that the IdM source code executes "sp_databases" to list the databases. In SQL versions prior to 2005 this would work by default. But with 2005 a user has to be granted permissions to do so.
    To fix it you need to either grant the IdM ID you're using VIEW DEFINITION permission at an appropriate scope: object level, database level or server level or modify the stored procedure so that it executes under the credentials of the owner.
    Here's some info: http://msdn.microsoft.com/en-us/library/ms187113.aspx

  • SQL Server 2000 to 2005

    We have the following scenario:
    Have an enterprise database whit MSSQLServer2000 ready to start to work in the final customer enterprise.
    Now we have to restore that database in the customer MSSQLServer, which runs on 2005 version.
    Do you know if we can have any incompatibility or problem?
    Have you deal with this before?
    Any help will be appreciated. Thank you!

    Hello,
    The only problem could be detected is temporary table exists. I suggest you to perform database check up before restore and upgraded. Try to use this query in SQL analyzer :
    --Upgrade Checks Script for note no. 1000846 for 2004A version or higher
    --Version 2.0
    --Last Update on 19.06.2007
    select 'Please refer to Note 1047010' where exists
    (select t0.docnum as OVPM_docnum,             
    t1.docnum as VPM1_docnum,                    
    t1.checknum as VPM1_checknum,                
    t2.pmntnum as OCHO_pmntnum ,                 
    T2.CHeckKey as OCHO_Ket                      
    from OCHO T2
    Left join OVPM T0 on T2.PmntNum = T0.Docnum  
    Left Join VPM1 T1 on T2.PmntNum = T1.Docnum  
    where t1.docnum is null and T0.docnum is null
    And t2.pmntnum <> 0)
    Union all
    select 'Please refer to Note 1047010' where exists
    (select t0.docnum as OVPM_docnum,                 
    t1.docnum as VPM1_docnum,                        
    t1.checknum as VPM1_checknum,                    
    t2.pmntnum as OCHO_pmntnum ,                     
    T2.CHeckKey as OCHO_Ket                          
    from OCHO T2                                     
    Left join OVPM T0 on T2.PmntNum = T0.Docnum
    Left Join VPM1 T1 on T2.PmntNum = T1.Docnum      
    where T0.docnum is not null and T1.docnum is null
    And T0.checksum <> 0)
    Union all
    select 'Please refer to Note 920198' where exists
    (select BankCode, Account, branch,  country from DSC1 where
    bankcode not in (select bankcode from ODSC) )                   
    Union all
    select 'Please refer to Note 920198' where exists
    (Select  T0.BankCode, T0.CountryCod, T1.Bankcode,   
    T1.Bankcode, T1.country from ODSC T0 inner join DSC1 T1       
    on T0.bankCode = T1.Bankcode and T0.CountryCod <> T1.country ) 
    Union all
    select 'Please refer to Note 923307' where exists
    (Select  T0.Name as 'Object',                                    
    Case  T0.Type                                                   
    when 'V' then 'View' When 'FN' then 'User defined Function'     
    when 'U' then 'User table'                                      
    when 'P' then 'Stored procedure'                                
    when 'TR' then 'Trigger'                                        
    else T0.Type end as 'Object type',                              
    T3.Name as 'Dependent on'                                       
    from sysobjects T0                                              
    inner join sysdepends T2 on T0.id = T2.id                       
    inner join sysobjects T3 on T2.depId = T3.id                    
    Where T0.type not in ('S') and                                  
    T2.deptype <> 0 and T3.id in                                    
    (select  id From sysobjects where type = 'U' and (len(name)= 4 or
    len(name)= 5) and                                               
    name not like '@%' and uid = 1)                                
    Group by T0.Name, T3.Name, Case  T0.Type                        
    when 'V' then 'View' When 'FN' then 'User defined Function'     
    when 'U' then 'User table'                                      
    when 'P' then 'Stored procedure'                                
    when 'TR' then 'Trigger'                                        
    else T0.Type end     )                                           
    Union all
    select 'Please refer to Note 878123' where exists
    (select absentry, linenum, loginstanc, objtype, count(*)             
    from ADO5                                                           
    group by absentry, linenum, loginstanc, objtype having count(*) <> 1 )
    Union all
    select 'Please refer to Note 823304' where exists
    (SELECT count() FROM OALT where code <0 having count() <6)
    Union all
    select 'Please refer to Support Center with Note no. 823129' where exists
    (SELECT * FROM CUFD T0 WHERE T0.NotNull = 'Y' and T0.Dflt IS NULL)
    Union all
    select 'Please refer to Note 909693' where exists
    (Select * from ORPD where CreateDate Is null)
    Union all
    select 'Please refer to Note 909693' where exists
    (Select * from OPCH where CreateDate Is null)
    Union all
    select 'Please refer to Note 928403' where exists
    (Select Itemcode, manbtchnum, mansernum From OITM where  
    invntitem = 'N' and (manbtchnum = 'Y' or mansernum = 'Y'))
    Union all
    select 'Please refer to Support Center with Note no. 920503' where exists
    ( Select *                                           
    From OWKO                                          
    where OWKO.OrderNum in                             
    (SELECT T0.OrderNum FROM OWKO T0 WHERE             
    T0.OrderDate > T0.ExpFinishD or ExpFinishD is null) )
    Union all
    select 'Please refer to Support Center with Note no. 920503' where exists
    (Select *             
    From OWKO            
    where Instance is null)
    Union all
    select 'Please refer to Support Center with Note no. 920503' where exists
    (select t3.itemcode from oitm t3                                        
    where t3.invntitem='n' and t3.itemcode in                             
    (SELECT t2.code  FROM ITT1 T2 WHERE T2.Father in                       
    (SELECT T0.ItemCode FROM WKO1 T0 INNER JOIN OWKO T1 ON T0.OrderNum =   
    T1.OrderNum                                                            
    WHERE T1.Status ='o' GROUP BY T0.ItemCode) )                           
    and t3.itemcode not in (select t4.itemcode from oitw t4))
    Union all
    select 'Please refer to Note 994071' where exists
    (SELECT COUNT(*) FROM
      SELECT T2.DocEntry
        FROM [dbo].[OINM] T0
          INNER JOIN [dbo].[DLN1] T1 ON T0.CreatedBy = T1.DocEntry AND T0.DocLineNum = T1.LineNum
          INNER JOIN [dbo].[INV1] T2 ON T2.BaseEntry = T1.DocEntry AND T2.BaseLine = T1.LineNum AND T2.BaseType = 15
          INNER JOIN [dbo].[OINV] T3 ON T3.DocEntry = T2.DocEntry
          WHERE T0.TransType = 15  AND (T2.LineStatus <> 'C'  OR  T3.DocStatus <> 'C')
        GROUP BY T2.DocEntry, T2.LineNum
    ) T
    having count (*)>30000)
    union all
    select 'Please refer to Note 1001878' where exists
    (select *
    from rdoc
    where doccode not in (select distinct doccode from ritm))
    union all
    select 'Please refer to note no. 970630' where exists
    (select *
    from ouqr
    where qtype = 'R' and qstring not like 'SELECT%')
    union all
    select 'Please refer to Support Center with Note no. 1014856' where exists
    (select  (select count() from VPM1 ) -(select count() from OCHO where
    CreateJdt = 'N' and PmntNum <> 0  )
    where (select count() from VPM1 ) -(select count() from OCHO where
    CreateJdt = 'N' and PmntNum <> 0  ) > 0)
    union all
    select 'Please refer to Support Center with Note no. 946360' where exists
    (select serialnum from OWKO
    group by serialnum
    having count(*)>1)
    union all
    select 'The Databse you are trying to upgrade is after ugrade failure attempt, please try to upgrade the original database.' where exists
    (select * from sysobjects t0
    inner join cinf on 1=1
    where cinf.version<680000 and t0.xtype='U' and ( t0.[name] ='OACP' or t0.[name]='ALR3' )  )
    union all
    select 'Please refer to Note 1056335' where exists
    (select * from sysobjects where [name] like '@%'
    and name not in
    (select '@'+tablename from outb) and xtype='U')
    let me know if you find the result.
    Rgds,

  • SQL SERVER 2000 to 8i Migration

    I am trying to migrate tables, stored procedures, views etc from a SQL2K database to an ORACLE 8i database but it gets stuck trying to load the source model with an ORA-01401: inserted value etc error on one of the tables from the master database (syslogins). Is there a way I can stop it trying to use the master database or any idea what column might be doing it as I have checked the column mapping and it seems fine.
    Thanks very much

    No, at this time the Migration Workbench only support Migrations from SQLServer 6.5/7.0.
    Regards,
    Brian.

  • SQL Server 2000-2005/2008 Upgrade

    I was wondering if there was anyone out there who had been using SQL Server 2000, and upgraded it to SQL 2005/2008 during a tools upgrade? We are currently on tools 8.44 and performance is bogging down at times on SQL 2000. Curious to see if and what your experiences were? Also has anyone had any success data archiving with tools 8.44?
    Appreciate replies

    Hi,
    I have successfully done an upgrade from tools 8.44 to 8.49 (also sql server 2000 to 2005 sp3) in 2009
    The performance was way better in 2005, also managing the database :).. also you wont hav to face the dreadful deadlock problem in 2005
    I should say that this activity was part of an application+tools upgrade

  • SQL Server 2000\2005 compatibility with Active Directory 2012

    Hi All,
    We are currently using Active Directory 2003 and will be upgrading to AD 2012.  I'm trying to determine if there is any known compatibility issues when running older versions of SQL Server (2000 and 2005) when upgrading to AD 2012.   I've
    read forums from when others went from AD 2003 to AD 2008 and didn't experience any issues.  We have the newer versions of SQL but I'm not too concerned about these.  Any advice would be greatly appreciated?   Has anyone been through
    this process. 
    Thanks,

    Hi CraftsmanRobert,
    Based on my understanding, you used Active Directory 2003, then it would be upgraded to Active Directory 2012. You wanted to run older versions of SQL Server (2000 and 2005) with Active Directory 2012.
    Firstly, there can be a compatibility problem when run older version with Active Directory 2012. SQL Server 2005 (the release version and service packs) and earlier versions of SQL Server are not supported on Windows Server 2012 R2, Windows Server 2012,
    Windows 8.1, or Windows 8. For more information, please refer to this article: How to use SQL Server in Windows and Windows Server environments (http://support.microsoft.com/kb/2681562/en-us).
    Besides, Microsoft doesn’t provide assisted support for SQL Server 2000 and SQL Server 2005 already. Please upgrade the existing instance of SQL Server 2000 and SQL Server 2005 to a new version like SQL Server 2012. You can download SQL Server 2012 Express
    from this link:
    http://www.microsoft.com/en-us/download/details.aspx?id=29062.
    Best regards,
    Qiuyun Yu

  • ODI's CDC Support for MS SQL Server 2000

    Hi,
    Does ODI provides CDC with log for MS SQL Server 2000? I read somewhere that we need to get a separately priced adapter for this because ODI supports only trigger based CDC for MS SQL Server 2000 and 2005.
    Could anyone please shed some light on this?
    Thank you.

    Hi,
    Are you able to find out any info on this?
    Appreciate your help on any leads..
    Regards
    Naveen

  • SQL Server 2000, 2005 and 2008 migration

    Hi,
    we have to migrate SQL Server 2000, 2005 and 2008 to SQL Server 2014. Can anyone please help with some good links to migrate DTS and SSIS package from 2000, 2005 and 2008 to SQL Server 2014?
    Regards,
    Satendra Singh

    Please see these links:
    Migration SQL Server 2000 to SQL Server 2012
    Migrating to SQL Server 2014
    T-SQL Articles
    T-SQL e-book by TechNet Wiki Community
    T-SQL blog

  • Trying to migrate SQL Server 2000 to Oracle 10g.

    Hi.
    I´m trying to migrate from Sql Server 2000 to Oracle 10g and I got some troubles.
    I have connected both databases with my Oracle Sql Server, after that I went to the Menu--> Migrate--> Fast Migration and then fill all the steps necesary.
    I can see the repository`s table at the oracle schema but after that the Sql Developer hang at the point "capture". I let the tool work for 2 hours and nothing to do. It´s not a hughe db so could be done faster.
    May I miss something?.
    Thanks.

    Hi
    I also have similar issue when trying to migrate from MS SQL 2005 to oracle 10g.
    I use the SQL Developer Version 2.1.0.63.
    First, I tried to use 'Quick Migration' then it created repository then stop there with error message
    "Error ocurred during capture: ORA-01400: cannot insert NULL into ("DDHCOWNER"."MD_PROJECTS"."ID")"
    Then, try manual way to capture SQL server, but some how it doesn't work. It just refresh IDE and stop.
    Before this activity, I tried to migrate MS SQL 2005 using 'Quick Migration' and it works. But this time I have to do it on another DB then this happened.
    So I re-try the previous connection then encountered the same to all.
    Thus, please kindly help to advice how to solve this problem.
    Thank you so much.
    Regards,
    Sai Lin Naung

  • Which is the best way to migrate the SQL SERVER 2000 Database to SQL SERVER 2003 Database?

    Hi,
        I  need to migrate the Production database sql server 2000 to Sql server 2003, Please give me the best idea to migrate the database without any loss data, credentials and  Objects. 
    Nandha Kumar

    SQL server does not have any version named SQL server 2003 please check the version correctly it should be either SQL 2005,2008,2008 R2,2012
    You can use the backup/restore to upgrade the SQL 2000 database to till SQL 2005,2008,2008R2
    For SQL Server 2000 to 2012
    First upgrade from SQL 2000 database to either SQL 2005, 2008 or 2008R2 and than upgrade it to SQL 2012.
    http://social.msdn.microsoft.com/Forums/sqlserver/en-US/eaa1eb44-729f-466b-8233-cb768fbb4208/upgrading-to-sql-server-2008-from-sql-server-2000?forum=sqlsetupandupgrade
    http://social.msdn.microsoft.com/Forums/sqlserver/en-US/4fac7511-2c75-46a0-802b-807dd26b12bf/sql-2012-will-not-convert-a-sql-2000-database?forum=sqlservermigration
    And after migration to SQL 2005 or 2008, if you want to script the database than can generate scripts pick DB and check off "script all objects in the selected database".
    http://blog.sqlauthority.com/2011/05/07/sql-server-2008-2008-r2-create-script-to-copy-database-schema-and-all-the-objects-data-schema-stored-procedure-functions-triggers-tables-views-constraints-and-all-other-database-objects/
    You can upgrade from SQL Server 2005, SQL Server 2008, and SQL Server 2008 R2 to SQL Server 2012.
    http://msdn.microsoft.com/en-us/library/ms143393(v=sql.110).aspx
    Please click the Mark as answer button and vote as helpful if this reply solves your problem

  • Regarding ReCreating Catalog in SQL Server 2005 which was existing in SQL Server 2000

    Hello
    I was using SQL SERVER 2000 ... In one table I've created FULL TEXT SEARCHING ( Full text catalog along with full text indexing)
    Now we had to install our db in SQL SERVER 2005 standard edition. But while taking script it gave me two lines like:
    if (select DATABASEPROPERTY(DB_NAME(), N'IsFullTextEnabled')) <> 1
    exec sp_fulltext_database N'enable'
    GO
    if not exists (select * from dbo.sysfulltextcatalogs where name = N'DEV_CAS_DiagnosisCatalog')
    exec sp_fulltext_catalog N'DEV_CAS_DiagnosisCatalog', N'create'
    GO
    so I used this in the new db creation script...
    But I couldn't get where it actually is in SQL SERVER 2005 standard edition.
    and also plz help how should we create if it doesn't exist...
    What could be the problem....
    Thanks In advance

    if (select DATABASEPROPERTY(DB_NAME(), N'IsFullTextEnabled')) <> 1
    exec sp_fulltext_database N'enable'
    GO
    if not exists (select * from dbo.sysfulltextcatalogs where name = N'DEV_CAS_DiagnosisCatalog')
    exec sp_fulltext_catalog N'DEV_CAS_DiagnosisCatalog', N'create'
    GO
    sp_fulltext_catalog [ @ftcat= ] 'fulltext_catalog_name' ,
    [ @action= ] 'action'
    [ , [ @path= ] 'root_directory' ]
    Full-text catalog and index data is stored in files created in a full-text catalog directory(not on SSMS). The full-text catalog directory is created as a sub-directory of the directory specified in
    @path or in the server default full-text catalog directory if
    @path is not specified. The name of the full-text catalog directory is built in a way that guarantees it will be unique on the server. Therefore, all full-text catalog directories on a server can share the same path.
    Refer the path column by running the below query. full text catalog file is created under the root directory by default if the path is not specified.
    select * from dbo.sysfulltextcatalogs where name = N'DEV_CAS_DiagnosisCatalog'
    Refer
    http://technet.microsoft.com/en-us/library/ms189520(v=sql.90).aspx
    Regards, RSingh

  • Migration from SQL Server 2000 to Oracle8I

    Would somebody please suggest me the best way for migrating a 50Gb Database from SQL Server to Oracle8i. We are willing any third party products

    Bhas,
    The Oracle Migration Workbench creates scripts using Microsofts bcp to export the data from Sqlserver and Oracle sqlldr to import the data into Oracle. You can use these tools but the Oracle Migration Workbench plugin for SQL Server 2000 is not available or even in development (yet).
    I hope this information is of use,
    Turloch
    Oracle Migration Workbench Team

  • Data Import from Oracle Dump to SQL Server(2000/2005)

    Hi Friends,
    I'm using Oracle 10g.
    I've a scenario.
    I've Oracle Dump file. Now i would like import in SQL Server(2000/2005).
    Can any one suggest me how to do this?
    Any idea,clue will be highly appreciated.

    I think you will need to import the data into SQL Server from an ASCII flat file using SQL Server DTS if avialable. You can use SQL Plus to extract the data outof Oracle into comma delimited flat files and then use SQL Server DTS load into the SQL Server database.

Maybe you are looking for

  • ITunes Visualizer full screen/windowed

    I put my itunes visualizer into full screen mode now i cant get it back into windowed mode. can someone tell me how you put the visualizer into windowed from full screen please?

  • IDVD won't burn DVD, keeps showing up with "You Inserted a blank DVD..."

    I keep getting the error during the encoding process for burning. The prompt shows up as if i just inserted a new blank DVD, and gives me an encoding video error. Does anyone know how to prevent this?

  • Some observations regarding passwords and the App Store

    It used to be that installing or upgrading an app, even free ones, required your inputting your AppleID. There would be a five- to ten-minute grace period during which you needn't enter it again, but afterwards you would be required to re-enter the p

  • How to identify ASM DiskGroup attached to which Disks ???

    Hi Guys, In 11gR2 RAC, How to identify which ASM Diskgroup is attached to which Disks...( OS is RHEL 5.4). We could list ASM Diskgroups by, *#oracleasm listdisks* but this command doesn't show the disks assigned to ASM DiskGroup. Even for checking lo

  • Cleaned the keys on my wireless keyboard, 5 keys not working.

    Cleaned the keys on my wireless keyboard with rubbing alcohol. Now my number 2 key, w, s, x and caps lock keys won't work. I copy and paste these right now. I did notice the cotton balls were saturated and some seeped out, but I didn't notice that my