Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Help on SQL server 2000 1

Status
Not open for further replies.

Fampofo

Programmer
May 24, 2002
16
GB
Hi Everyone I am trying to use 'select into' statement to copy a table and its contents to a new table
This is the error message I got
" Cannot run SELECT INTO in this database. The database owner must run sp_dboption to enable this option."
Can you help me. Thanks
 
Try issuing this command

exec sp_dboption 'dbname', 'select into/bulkcopy', 'true'

replacing dbname with your database name
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top