Viewing 15 posts - 5,896 through 5,910 (of 9,643 total)
Can you post the exact SQL you are executing? And the definition of the stored procedure being called?
February 23, 2009 at 7:16 am
You may want to check out this article, http://www.sqlservercentral.com/articles/Security/65169/. Here is another older article that may still apply as well, http://www.sqlservercentral.com/articles/Installation/cannotgeneratesspicontext/929/
February 23, 2009 at 7:12 am
What are the indexes on the table?
Have you tried this:
SELECT
tb1.tar_fileno,
CASE
...
February 23, 2009 at 6:58 am
What is the exact error message?
Odds are you can probably get all your data in one query and do it in one report without the subreport. That will be...
February 20, 2009 at 1:12 pm
GilaMonster (2/20/2009)
Alvin Ramard (2/20/2009)
Use [Regional Office Claims Adjudication Process-Disability (ROCAP)];
A government office? That explains everything!
Did anyone notice the one he started this morning?
http://www.sqlservercentral.com/Forums/Topic661280-338-1.aspx
Full outer joins on what appear to be...
February 20, 2009 at 12:58 pm
Lynn Pettis (2/20/2009)
Please, some one, come slap me upside the head if I go back here and post anything more.
Ha Ha, that's a good one.;)
February 20, 2009 at 12:57 pm
Sorry, you can't create server level roles.
February 20, 2009 at 8:43 am
Try searching the script library on this site. Here is one that will identify foreign keys:
http://www.sqlservercentral.com/scripts/foreign+keys/64333/
This might get you started on the others as well.
Here's a search for Primary...
February 20, 2009 at 7:59 am
No you did not do anything wrong. I had forgotten how the IIF statement is evaluated. I think it is evaluating the Substring for both the If and...
February 20, 2009 at 7:53 am
Bob,
I don't disagree. I was thinking that you would use the INFORMATION_SCHEMA.COLUMNS table to only add columns to the WHERE clause that allow nulls. The only way something...
February 20, 2009 at 7:51 am
You would do something like this:
Imports System.Data.SQLClient
Dim cnSQL as SQLConnection = New SQLConnection(ConnectionString)
Dim cmdSQL as new SQLCommand
' if you want to return results using a datareader then you need a...
February 20, 2009 at 7:47 am
Is it possible that getting no data is the correct result?
February 20, 2009 at 7:35 am
You can lookup each of the set statements in Books on Line to get full definitions
SET ANSI_NULLS ON
Sets the connection to use ANSI standard NULL handling. This basically means...
February 20, 2009 at 7:27 am
Viewing 15 posts - 5,896 through 5,910 (of 9,643 total)