Viewing 15 posts - 316 through 330 (of 1,217 total)
Oh, and another possibility. Check that the query/sp is working with the correct database. Just today my colleague was completely perplexed how it is possible that a view returns different...
September 5, 2007 at 7:56 am
Yes, I know that from our company. CV of an author of book, summary of the book, a few pages of text here and there. TEXT is the right datatype...
September 5, 2007 at 6:51 am
If your main problem is growth during optimization/maintenance which uses inbuilt functionalities (DBCC DBREINDEX, DBCC INDEXDEFRAG), then it is quite probable that you can't do anything about it. As far...
September 5, 2007 at 6:41 am
Hmm.. this system seems pretty illogical to me so I may have problems understanding what should happen when, Anyway, here is one of your problems:
SELECT @LastScoreByTrustier=TrustedScore FROM MemberTrustLog WHERE...
September 5, 2007 at 5:14 am
You misunderstood Koji. He was asking whether you have checked the procedure (or the query you tested) to make sure that it does NOT contain this command. In case you...
September 5, 2007 at 4:51 am
I'm sorry, but your select list contains references that can't be used in this place... Table f0116sp is not available unless you join it - the derived table is aliased...
September 5, 2007 at 1:44 am
The source file (text file you want to import) must be correct. Try working on this angle - make sure that it will not be entered incorrectly. If possible, make...
September 4, 2007 at 5:34 am
If you don't have DBA permissions, you should contact someone who has.
Also, you can consider dropping some old tables you don't need, or at least deleting unneeded rows. This could...
September 4, 2007 at 1:09 am
Please post more readable code - use table name/alias with each column in the select.
Table structure of involved tables would also be helpful.
At the moment, I can only make a...
September 2, 2007 at 11:51 am
Maybe this is just misunderstanding and karthikeyan just wants to TAKE exam and is asking how to learn for it? I seem to remember that he stated about himself a...
September 2, 2007 at 10:39 am
Thanks Lynn, good point... we already have one server running SQL2005 and we had to modify the procedure for sending emails. We also use sp_send_dbmail in 2005 instead of SMTP...
August 31, 2007 at 8:04 am
Try to Google the messages, or search for it in Microsoft knowledge base. There are some bugs that display this infomessage and can be fixed by installing a newer patch.
Oh,...
August 31, 2007 at 6:30 am
Hello,
this probably isn't the best way to format output... maybe you should consider using sp_makewebtask, which will allow you to create a HTML file with table, and then attach the...
August 31, 2007 at 6:15 am
Since you want to select something that is NOT in your table (at least I assume you want to select ALL dates between certain boundaries, not only those where there...
August 31, 2007 at 3:44 am
Hello,
let me give you the standard link for your situation 🙂 it explains lots of things and gives tips on how to avoid dynamic SQL best (or how to...
August 30, 2007 at 9:06 am
Viewing 15 posts - 316 through 330 (of 1,217 total)