Showing posts with label body. Show all posts
Showing posts with label body. Show all posts

Friday, March 9, 2012

Migration of Extended Stored Procedure

Hi ,

Any Body can help in knowing, How i can migrate the Extended Stored Procedure from one server to another.

Hi,

sure you can simply copy the dll which contains the logic for the xp to the new server in the BINN directory and run the command:

exec sp_addextendedproc 'xp_proc_Name', 'xplibrary.dll'

That′s it.

HTH, Jens K. Suessmeyer.


http://www.sqlserver2005.de

Saturday, February 25, 2012

Migration from COBOL400 to SQL Server

I want to migrate from COBOL400/AS400 to MS SQL Server, can any body tell me the way I can perform Data migration/Transfer without any loss of dataI'd be willing to bet that given enough of a description of what you want to do, that someone can tell you a relatively easy way to do it. So far, you haven't given enough information for me to even start.

-PatP|||1. Analyze the data in the old system.
2. Analyze the business requirements for usage of the data.
3. Analyze shortcomings in current data and structure.
4. Model a relational database(s) that accurately reflects and provides for 1,2,3.
5. In parallel to 4, you will probably need to create new apps or perform development to interface with new model and accurately reflect business needs.
6. Create a migration routine (preferrably repeatable and modular) to move data between systems.
7. Pray if you're into that type of thing. Do this a LOT.