Activity overview
Latest activity by edward0724
I know I could specify parameters like the following, my question are
SQL "Transact-SQL_statement" -U sa -U password -I instance
1) do we have a parameter that will write the output to a file
2)
PostPosted: Sat Jul 14, 2007 7:08 am Post subject:
If you are trying to store the contents of the output into a table, it's not currently possible because SQL Backup returns 2 result sets. The SELECT ... INTO ... FROM ... command won't work because both result sets have a different structure.
We're currently testing an option to omit the second result set, so that the output is similar to that produced in version 3. Stay tuned ...
will this be available on sql backup 5, if not when/which version / comments
I know I could specify parameters like the following, my question are
SQL "Transact-SQL_statement" -U sa -U password -I instance
1) do we have a parameter that will write the output to a file
2)
...
sqlbackup return parameter???
How do I capture result return by redgate sql backup command - sqlbackup
I am doing something like this:
insert into #result
exec sqlback @backupdb
but I am getting insert error:
Insert Error: Colu...