If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

 
Go Back  dBforums > Data Access, Manipulation & Batch Languages > ANSI SQL > Creating backup table

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 10-28-02, 21:29
rwj7p rwj7p is offline
Registered User
 
Join Date: Oct 2002
Location: Virginia
Posts: 13
Creating backup table

I am trying to create a single backup table, I am familiar with the create table function, but how do I use the function to create a duplicate table in my db.
__________________
Roger W. Johnson Jr.

Reply With Quote
  #2 (permalink)  
Old 10-29-02, 03:12
alligatorsql.com alligatorsql.com is offline
Registered User
 
Join Date: Jul 2001
Location: Germany
Posts: 189
Re: Creating backup table

Hello,

use
CREATE TABLE mybackup AS SELECT * FROM mytab
where mybackup is the name of the backup table and mytab is the
original table.

Hope that helps ?
Manfred Peter
(Alligator Company GmbH)
http://www.alligatorsql.com


Quote:
Originally posted by rwj7p
I am trying to create a single backup table, I am familiar with the create table function, but how do I use the function to create a duplicate table in my db.
Reply With Quote
  #3 (permalink)  
Old 10-29-02, 12:40
rwj7p rwj7p is offline
Registered User
 
Join Date: Oct 2002
Location: Virginia
Posts: 13
Re: Creating backup table

Quote:
Originally posted by alligatorsql.com
Hello,

use
CREATE TABLE mybackup AS SELECT * FROM mytab
where mybackup is the name of the backup table and mytab is the
original table.

Hope that helps ?
Manfred Peter
(Alligator Company GmbH)
http://www.alligatorsql.com
Thanks, worked just fine. I knew I was close I was trying to put the select in () thats what my issue was.

Thanks for your help
__________________
Roger W. Johnson Jr.

Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On