Viewing 10 posts - 1 through 10 (of 10 total)
Based on the original code snippet you provided, it looks to me like the .Net application is ALTERING the stored procedure, not calling it. (I believe this might be the...
March 31, 2009 at 7:50 am
If I understand your question, you are trying to query for records in which the ques.qid is found in this list of itegers: 39,40,1,4,35,41,52,54,55,56
If so, then try using dynamic SQL....
May 15, 2008 at 11:59 am
Humorous, entertaining and very informative. Thanks!:)
April 14, 2008 at 1:27 pm
I don't have an answer, but this is how I would approach figuring out why the connection is failing:
1. Determine where the problem is - on the client? or...
July 27, 2007 at 10:42 am
Have you tried using SQL Server Profiler?
I think that SP:StmtCompleted might contain the detailed information showing what procedures are running, and what T-SQL statements each is executing. If you save...
May 5, 2007 at 12:38 pm
I just confirmed that it is in fact possible to modify the data in views using EM (Open View from the context menu). It is even possible to modify data...
May 4, 2007 at 11:01 am
You said... "Would like it to just delete one row of the benefit type number 2 instead of all them." If you mean that you want to delete one row...
February 26, 2004 at 7:53 am
You can use SET DEADLOCK_PRIORITY LOW to identify a transaction that should become the deadlock victim if necessary. If you have an existing deadlock situation, use sp_lock and then sp_who...
February 15, 2004 at 10:17 pm
I have been reading "Step by Step: MS SQL Server 2000 Analysis Services" by Reed Jacobson, Microsoft Press. It is a very good introduction if that is what you are...
February 15, 2004 at 9:52 pm
I'm a newbie, and I may be wrong but...
I believe partitioned views must have a CHECK constraint that defines the horizontal partitioning. Apparently the CHECK is actually used by the...
February 15, 2004 at 9:38 pm
Viewing 10 posts - 1 through 10 (of 10 total)