Viewing 15 posts - 1,171 through 1,185 (of 1,252 total)
hi
Have u done any heavy insert/update operations or any index rebuilding operations. There could be many other reasons for increase in log file size .
January 11, 2007 at 12:09 am
use the information_schema.parameters view.
January 11, 2007 at 12:04 am
hi
Methods generally used to avoid cursors are
using temporary tables,table data types, other looping syntaxes and implementing a different logic if possible.
In many cases i have seen that using...
January 10, 2007 at 11:58 pm
hi
keep in mind the following server properties
Cost Threshhold of Parallelism and Max Degree of parallelism.
January 9, 2007 at 9:39 pm
hi
Try the sysconstraints table.
January 8, 2007 at 9:34 pm
hi
I figured out what was happening. MSDTC was not properly configured, I configured it and things started moving.
Thanks anyways
January 8, 2007 at 3:31 am
hi
just a guess... have u enabled TCP/IP and NamedPipes protocols for your server.
January 7, 2007 at 9:32 pm
hi
can u tell us what is the error that u r getting?
December 28, 2006 at 6:15 am
try this...
sp_changeobjectowner 'Table1','dbo'
December 28, 2006 at 12:28 am
hi
will using a function instead of a procedure help. performance might not be very good though.
December 27, 2006 at 10:20 pm
Hi
you shud avoid bookmark lookups as much as possible as they can degrade performance while an index seek will imporve performance especially when dealing with a large number of rows.
Again I...
December 27, 2006 at 10:15 pm
hi
i copied the statements as it is...it seems to be working.
December 27, 2006 at 4:34 am
hi
i think the replace function will work here.
ex: i have a string value "value1" and a tab after that which looks like this
"value1 ". using replace
SELECT REPLACE (value1 ' ...
December 21, 2006 at 9:41 pm
Viewing 15 posts - 1,171 through 1,185 (of 1,252 total)