Wrox Programmer Forums
Go Back   Wrox Programmer Forums > SQL Server > SQL Server 2000 > SQL Server 2000
|
SQL Server 2000 General discussion of Microsoft SQL Server -- for topics that don't fit in one of the more specific SQL Server forums. version 2000 only. There's a new forum for SQL Server 2005.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the SQL Server 2000 section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old August 3rd, 2005, 01:47 AM
Registered User
 
Join Date: Jun 2005
Posts: 7
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via Yahoo to vaneza
Default sql script that gets the 2 different database


Is there a sample script that anyone can lend me.... on getting or accessing to different database. My goal is to insert or update the record from database1 to database2 using job scheduling. The two database have same tables and fields.

Help!.... i really need a solution asap...
thanks

 
Old August 3rd, 2005, 02:55 AM
Registered User
 
Join Date: Aug 2005
Posts: 4
Thanks: 0
Thanked 0 Times in 0 Posts
Default

You can try something like:

insert into database1.dbo.tablename
select * from database2.dbo.tablename


Or if the databases are on different SQL servers:

insert into server1.database1.dbo.tablename
select * from server2.database2.dbo.tablename


If the table has a different name, you simply specify that in your SQL query. And if you have different fields (or an identity field), you just specify the actual field name instead of just using the *.






Similar Threads
Thread Thread Starter Forum Replies Last Post
How Run .sql Script file in MS SQL Server 2000? aarkaycee SQL Server 2000 5 October 12th, 2009 05:43 AM
Database Deployment to Shared Servers; SQL Script englere BOOK: ASP.NET 2.0 Website Programming Problem Design Solution ISBN: 978-0-7645-8464-0 6 May 17th, 2008 07:00 AM
SQL Script to populate TBH database motemape BOOK: ASP.NET 2.0 Website Programming Problem Design Solution ISBN: 978-0-7645-8464-0 2 May 25th, 2007 04:42 AM
sql server database backup by script mateenmohd SQL Server 2000 4 July 6th, 2004 12:32 PM
Create Oracle database using a script pankaj_daga Oracle 2 June 22nd, 2004 07:13 AM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.