Viewing 15 posts - 781 through 795 (of 1,166 total)
The sp_fulltext_catalog stored procedure will be removed in a future version of SQL Server. Avoid using this feature in new development work, and plan to modify applications that currently use...
December 28, 2006 at 10:31 am
You can't backup the db without replication info including replication properties...
When you restore the db other than the server which was backed up sql server removes replication but not rowids...
December 28, 2006 at 10:08 am
It is better to qualify the object name with owner name..incase if you have two objects with same name and different owners...
exec sp_changeobjectowner @objname = 'owner.object' , @newowner = 'owner'
exec sp_changeobjectowner...
December 28, 2006 at 12:34 am
You can use tsql instead VB script use rename and copy the file...
exec xp_cmdshell 'rename \\servername\c$\filename.zip filename_new.zip'
exec xp_cmdshell 'copy \\servername\c$\filename_new.zip \\servername\d$\filename_new.zip'
If you want to use in DTS execute...
December 28, 2006 at 12:29 am
If you want use DTS then check GLOBAL VARIABLES option...
OR
You can do the BCP in combination with xp_cmdshell using tsql too...
December 28, 2006 at 12:25 am
Yes, you can do it using dts package and can be scheduled too...
In your DTS you should drop and recreate tables in Excel other wise by default sql appends the...
December 28, 2006 at 12:23 am
When are you getting this error? Can you explain...
If you don't have 2005 components then how you access the server?
December 28, 2006 at 12:16 am
Remove the subscription and delete the triggers from subscribed table...
If there are no other subscriptions in that db then run sp_removedbreplication procedure...
Resubscribe and see what happens.
December 27, 2006 at 10:44 pm
I did 600+ GB backup to network share and still doing using third party backup tools without any issues..
I am using multiple backup files to improve performance...
December 27, 2006 at 6:55 pm
Yes you can monitor ddl changes using ddl triggers but in 2005 not in 2000...
Check SQL server 2005 BOL
http://msdn2.microsoft.com/en-us/library/ms186406.aspx
December 27, 2006 at 6:48 pm
December 27, 2006 at 6:34 pm
December 27, 2006 at 11:43 am
Use the corsor or while loop to do this or
you can use undocumented extended procedure xp_execresultset procedure to do this...
December 27, 2006 at 11:40 am
If procedure was corrupted then how you were able recompile it?
I think your procedure was using incorrect execution plan ... recompilation forced to generate new execution plan...
December 27, 2006 at 11:37 am
Check BOL...
How to: Create a Subscription for a Non-SQL Server Subscriber (Replication Transact-SQL Programming)
http://msdn2.microsoft.com/en-us/library/ms146961.aspx
December 27, 2006 at 11:15 am
Viewing 15 posts - 781 through 795 (of 1,166 total)