Viewing 15 posts - 1,756 through 1,770 (of 2,897 total)
Replication, if it's a frequent need
October 28, 2009 at 8:38 am
espanolanthony (10/28/2009)
so where should be the create procedure statement be. sorry for that but i i totally blank.
Look at CREATE PROCEDURE in Books On Line (BOL)
October 28, 2009 at 8:36 am
We had performance issues after upgrading to 2005. Some of them were resolved after closely looking at the joins and finding we needed to modify or add the CONVERT functions...
October 28, 2009 at 8:33 am
You could use a maintenance plan, write each backup to a separate file as suggested, then use the cleanup task to delete the previous backups older than x days.
October 27, 2009 at 2:29 pm
Based on your vague question, here are some vague answeers:
Not T-SQL, but ....
Replication
Log Shipping
Mirroring
Backup/Restore
T-SQL
Truncate table ....
Insert into ....
October 24, 2009 at 4:25 pm
GilaMonster (10/24/2009)
Why do the columns have to be in a particular position? Why can't you add them at the end (which is a ALTER TABLE ADD ... command) and change...
October 24, 2009 at 12:25 pm
espanolanthony (10/22/2009)
i do not have a full backup taken since 2 weeks.
Maybe you have differential backups or transaction log backups ?
October 22, 2009 at 8:15 pm
GilaMonster (10/22/2009)
I have a fun little problem.
I thought you only posted answers !!:-)
Is it a graphical plan ? Could you get the execution plan in text instead ?
October 22, 2009 at 12:04 pm
Another option is to restore the database, then truncate all the tables. This can be difficult if you have a lot of referential integrity between tables because they need to...
October 22, 2009 at 11:55 am
Do you mean how do you get the new data in "B" back to "A" after "A" is back online ? I suppose that depends on how "A" and...
October 20, 2009 at 1:58 pm
Michael Valentine Jones (10/20/2009)
homebrew01 (10/20/2009)
October 20, 2009 at 12:08 pm
Simple or full recovery model ? If Full, How often do you back up the transaction logs ?
October 20, 2009 at 8:32 am
You could get a trial version of Redgate. Redgate also has a utility to convert their backups into "normal" backups, which you could do with your trial copy in...
October 20, 2009 at 7:57 am
Some 3rd party tools allow specific table recovery. Some would have had to take the original backup with the tool. Apparently Redgate's latest version will do what you want...
October 19, 2009 at 8:15 pm
Remember that the values returned from sys.dm_db_index_usage_stats are only accurate since the last SQL restart because they get reset to 0:
From BOL
"... The counters are initialized to empty whenever...
October 19, 2009 at 1:09 pm
Viewing 15 posts - 1,756 through 1,770 (of 2,897 total)