Viewing 15 posts - 796 through 810 (of 1,166 total)
Your code may be generating temp tables even you are not explicitely...
Run these procedures one by one in QA after enabling the query plan and see which part of the...
December 27, 2006 at 11:06 am
Your date starts at the same position in all columns so you can use SUBSTRING and CONVERT functions to get the date data...
declare @string Varchar(1000)
select @string = '0600000000 0.030000 0...
December 27, 2006 at 11:00 am
Most of the times GUI will not work as it suppose to be...
Use DBCC SHRINKFILE command...and before running the shrinkfile command run the BACKUP LOG command if the recovery model...
December 27, 2006 at 10:48 am
What do you mean by change on publication database?
Are you trying to modify the non replicated objects?
If you are adding columns to replicated tables then you should use sp_repladdcolumn procedure...
December 27, 2006 at 10:33 am
Then copy the files to different location before shutting down pssdiag...
December 26, 2006 at 5:25 pm
My guess is you are asking about schema change...
In sql 2005 you can use DDL trigger to keep track of schema changes where in 2000 there is not built in...
December 26, 2006 at 5:16 pm
Only SQL server instances not ALL servers..
December 26, 2006 at 5:11 pm
You guys are talking different types of replication...
I think Shamshad is refferring to merge replication and Charbel is transactional...
I think Merge replication uses these types of triggers..
December 26, 2006 at 12:49 pm
Use OSQL with -L switch...
OSQL -L
December 26, 2006 at 12:32 pm
I don't think ther is any build in function or procedure to do this job..
Third party tools like DBArtizan will do this job for you...
OR
YOu can write your own code...
1....
December 26, 2006 at 12:29 pm
Based on sysobjects it is table it is system table exists in 2000 but not in 2005..
In 2005 I believe you can use sp_indexes_rowset_rmt procedure...
December 26, 2006 at 12:24 pm
Other than job scheduling there are some feature no available in Express edition...
Check the following SQL Server 2005 Features Comparison...
http://www.microsoft.com/sql/prodinfo/features/compare-features.mspx
December 26, 2006 at 12:10 pm
Delete and and repopulate may take more time because delete is logged operation...
You better test for optimal solution..
1. Truncate the table, drop the indexes and repopulate the using bcp/dts.
2. Truncate...
December 26, 2006 at 12:06 pm
In sql server it is called IDENTITY...
Check IDENTITY property/fuction....
December 26, 2006 at 11:59 am
December 25, 2006 at 10:20 pm
Viewing 15 posts - 796 through 810 (of 1,166 total)