Viewing 15 posts - 1,351 through 1,365 (of 7,429 total)
I may be wrong and cannot recall a spot in BOL that says for sure but this is based on their permissions in the database. I believe as long as...
January 19, 2005 at 5:00 am
Unfortunately even thou Text is a usable variable type for a SP and it can be an OUTPUT variable you cannot do assignment beyond the variable itself, so what goes...
January 18, 2005 at 7:27 pm
First off I would suggest you keep Jr and Mid level grade folks in mind. Many of these things they may know but have not yet been exposed enough so...
January 18, 2005 at 9:05 am
SInce I had to do this in SQL 7 the best way I found was to use a and insert from a starting point then join the temp table to...
January 18, 2005 at 8:35 am
Right off this will give you the thread a spid is on at the moment run.
DBCC SQLPERF(THREADS)
However I forget which tool right off will tell you which thread is attached...
January 18, 2005 at 7:34 am
I believe that will meet your needs best as well.
January 18, 2005 at 7:12 am
Did you take a look and compare the excution plans with and without the condition. If the condition increases the time you will see something change in the execution plan...
January 18, 2005 at 7:07 am
Could need to have sp_updatestats and DBCC UPDATEUSAGE ran. Could be sysindexes is not reflecting properly and this may solve. Try it and let us know.
January 14, 2005 at 8:11 am
However I would suggest he did potentially dig himself a hole.
From what you said.
1) It is Firefox.
Issue is firefox is designed to be self contained and not rely on system...
January 14, 2005 at 8:03 am
First the funny thing is I didn't even know it existed in T-SQL until about a year ago when someone posted a piece of code containing it somewhere I was...
January 13, 2005 at 7:28 pm
Would be really nice if MS offered other types of indexing methods and would allow you to have more custimization over indexing.
January 13, 2005 at 1:36 pm
The you just need to add that into the joins in the from section (test with a Select statement first and do just like I noted with that additionally.
January 13, 2005 at 11:42 am
Oh yeah and if you find that the contrator did not give you a valid answer your contract should allow you to void payment for failuer to fulfill their duties,...
January 13, 2005 at 10:15 am
Couple of things here.
1) You will need to add the WITH RECOMPILE option to the SP to ensure it never tries to use a stored execution plan for performance reasons.
2)...
January 13, 2005 at 8:18 am
Viewing 15 posts - 1,351 through 1,365 (of 7,429 total)