Viewing 15 posts - 661 through 675 (of 1,640 total)
so that means I can use both compression and non-compression backup files in one restore process together for a database, correct?
Thanks,
April 11, 2013 at 12:57 pm
arnipetursson (4/9/2013)
When you add the instance via the setup program, it will be the same SP as the existing instance.Reboot should not be required.
I am interested in that too, we...
April 9, 2013 at 10:01 am
Grant Fritchey (4/5/2013)
April 5, 2013 at 5:29 pm
I did a query like this:
--see the top ten events your server is waiting on
SELECT TOP 10
wait_type ,
...
April 5, 2013 at 12:15 pm
Using delete will also create big transaction log data. The tables we are working on have huge records. So using delete is not a good choice for us.
April 2, 2013 at 3:55 pm
If I use drop FK,truncate table, import data, then add FKs,
Then I don't need to figure out the order of the tables.
April 2, 2013 at 3:04 pm
Lowell (4/2/2013)
select
'ALTER TABLE '
+ QUOTENAME(schema_name(schema_id))
+ '.'
+ quotename(name)
+ ' NOCHECK CONSTRAINT ALL'...
April 2, 2013 at 3:00 pm
Sean Lange (4/2/2013)
April 2, 2013 at 2:57 pm
Erin Ramsay (4/2/2013)
Could run a SQL task in SSIS to do it. Just write a script to do it and have SSIS run that script or scripts.
Thanks, my question is...
April 2, 2013 at 2:51 pm
Grant Fritchey (4/1/2013)
Glad to hear it's fixed.Just curious though, why not use a PowerShell type of step in SQL Agent for a PowerShell script?
I found it runs much faster using...
April 1, 2013 at 2:23 pm
Sorry, it works now.
I found out the path for the file is wrong.
Thanks much
March 29, 2013 at 11:31 am
MyDoggieJessie (3/28/2013)
Reference MSDN...
March 28, 2013 at 1:50 pm
GilaMonster (3/28/2013)
sqlfriends (3/28/2013)
ganasulochana (3/28/2013)
If the database is in Full recovery model then you can able to take the log backup.for simple recovery mode, when it will do the checkpoints?
Checkpoint runs...
March 28, 2013 at 11:09 am
Viewing 15 posts - 661 through 675 (of 1,640 total)