Please start any new threads on our new site at https://forums.sqlteam.com. We've got lots of great SQL Server experts to answer whatever question you can come up with.

 All Forums
 SQL Server 2000 Forums
 SQL Server Development (2000)
 Data conversion

Author  Topic 

eddecardenas
Starting Member

3 Posts

Posted - 2001-05-18 : 11:03:17
Help, I am trying to move data from one db to a new db. Both db's are on the same server. Currently I am using a stmt like:
INSERT INTO BugPlus.party
(org_abbr, org_legalname, prt_type, prt_oldkey, prt_oldtype)

SELECT abbr, legalname, 'O', orgid, 'O'

FROM oldbug.org;

I am new to SQL and SQL Server so all help is appreciated.

   

- Advertisement -