Viewing 15 posts - 5,896 through 5,910 (of 9,643 total)
Check out sp_update_schedule in BOL.
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
February 23, 2009 at 7:23 am
Can you post the exact SQL you are executing? And the definition of the stored procedure being called?
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
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/
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
February 23, 2009 at 7:12 am
What are the indexes on the table?
Have you tried this:
SELECT
tb1.tar_fileno,
CASE
...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
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...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
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...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
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.;)
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
February 20, 2009 at 12:57 pm
Sorry, you can't create server level roles.
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
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...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
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...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
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...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
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...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
February 20, 2009 at 7:47 am
Is it possible that getting no data is the correct result?
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
February 20, 2009 at 7:35 am
Not that I am aware of.
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
February 20, 2009 at 7:29 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...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
February 20, 2009 at 7:27 am
Viewing 15 posts - 5,896 through 5,910 (of 9,643 total)