Showing posts with label Transact SQL. Show all posts
Showing posts with label Transact SQL. Show all posts

Wednesday, March 12, 2014

SQL: T-transact to backup database

BACKUP DATABASE <database name>
TO DISK = '<location>'
   WITH FORMAT,
      MEDIANAME = '<media name>',
      NAME = '<name>';

Friday, February 14, 2014

Useful SQL command


Truncat database table:

TRUNCATE TABLE table_name;