Viewing 15 posts - 646 through 660 (of 2,897 total)
I have MSDB set to "simple" and take a full backup daily.
September 30, 2013 at 3:21 pm
PearlJammer1 (9/30/2013)
September 30, 2013 at 3:18 pm
could you do "truncate table" instead of delete ? Should be faster, and no logging since you don't care about data recovery.
September 30, 2013 at 11:37 am
Woukln't it be easier to generate object scripts from an existing database, then run those scripts in the new database ? That would build empty tables. Add what...
September 30, 2013 at 10:14 am
Also, "query help" suggests that you have worked on it, but are stuck.
What have you got so far ?
September 30, 2013 at 9:51 am
That's odd. Maybe a another job outside of SQL such as a network backup is running t-log backups ??
fwiw. I backup MSDB daily.
September 30, 2013 at 9:32 am
I never make changes through the GUI. I go through a few steps when modifying data on the fly through a query window.
1) SELECT the data to be changed to...
September 30, 2013 at 9:29 am
Keith Tate (9/30/2013)
If you are using scheduled jobs to run your backups you can write a query to return all successes and failures of that job.
That is what I...
September 30, 2013 at 9:13 am
1 method would be to create a separate job for Proc2, 3 and 4. Then Proc1 could run sp_start_job "proc2' etc...
September 30, 2013 at 9:08 am
So the DNS entry will make all connections that normally point to Server_A, now point to Server_B ? And as long as the expected databases & permissions...
September 17, 2013 at 3:05 pm
Can a default SQL instance be renamed ??
I forgot about the DNS alias. I think that was done at a place I worked at a long time ago. Where...
September 17, 2013 at 2:27 pm
Perhaps I can run these steps after renaming the server itself to rename the SQL instance ??
sp_dropserver 'Server_B'
GO
sp_addserver 'Server_A', local
GO
September 17, 2013 at 2:14 pm
From Server_B, I am not able to pull from Server_A. But if I log on Server_A, I can push to server_B ..... hmmmm
Well, that's good enough to get what I...
September 17, 2013 at 12:43 pm
I had not go to the point of running it as a job, just running in a query window, or as DOS command. Does it matter if they are...
September 17, 2013 at 6:50 am
Viewing 15 posts - 646 through 660 (of 2,897 total)