sql server backup table
SELECT * INTO BackupTable FROM Table
backup table mssql
declare @name varchar(100) = 'tableName'
declare @timestamp varchar(100) =
replace(cast(convert(varchar, getdate(), 126) as varchar(10)), '-', '') + '_'
+ RIGHT('00' +cast(datepart(hour, getdate()) as varchar), 2)
+ RIGHT('00' + cast(datepart(minute, getdate()) as varchar), 2) + '_'
declare @query varchar(MAX) = 'select * into backup_' + @timestamp + @name + ' from ' + @name
--select @query
exec(@query)
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us