Viewing 15 posts - 901 through 915 (of 1,539 total)
vrabhadram (6/24/2009)
recovery process:
daily fullbackup at 1:00 am
transaction...
June 24, 2009 at 12:18 am
Can we backup the same database to two different servers at the same time?quote]
you can achieve so by using mirror to clause of backup statement
backup database test
to disk='c:\test1.bak'
Mirror to...
June 23, 2009 at 11:14 pm
Glad you're finally done with your DR using log shipping.:-)
June 23, 2009 at 8:27 pm
cavs143 (6/23/2009)
when i try to launch the mirroring it shows this error message:database cannot be opened.it is in the middle of a restore
Can you elaborate more on Launch Mirroring? Are...
June 23, 2009 at 7:21 pm
California (6/23/2009)
June 23, 2009 at 7:18 pm
nscott (6/23/2009)
June 23, 2009 at 7:09 pm
Mike (6/23/2009)
June 23, 2009 at 9:53 am
Thanks for correcting Noel. Appreciate it 🙂
Yes, use sqlcmd instead of osql.
June 23, 2009 at 7:40 am
i just hope u're checking for your database
select log_wait_reuse_desc from sys.databases where name='MyDBName'
If it's not a production server, try putting the recovery mode of your database to SIMPLE and then...
June 23, 2009 at 7:38 am
i dont know if there is a way to find 'how' it was created. However, you can query sysjobs to see who is job owner. check owner_sid column there.
June 23, 2009 at 7:30 am
OR run that with xp_cmdshell if u need to create a job in sql server itself....
June 23, 2009 at 7:26 am
see if this helps u
http://www.sqlteam.com/article/osql-storing-result-of-a-stored-procedure-in-a-file
Using the commands there you can store the results to an external file.
Remember to run this from command prompt instead. You can create a windows...
June 23, 2009 at 7:25 am
nscott (6/23/2009)
June 23, 2009 at 7:22 am
if you're running this query from query window, you've option to save the results in 1)grid, 2)text and 3) file. There are three buttons on the top right side for...
June 23, 2009 at 7:14 am
Why not use bulk insert?
insert * into server2.db2.dbo.table2 from table1
Also, put the secondary server in bulk logged mode(if it's in full recovery model) which will prevent log files on secondary...
June 23, 2009 at 7:06 am
Viewing 15 posts - 901 through 915 (of 1,539 total)