Viewing 15 posts - 8,881 through 8,895 (of 9,643 total)
I would wonder if it was adding a column or changing the Not Null to allow nulls that caused the issue?
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
April 4, 2008 at 9:47 am
For some reason I cannot see the image you have embedded. Could you try attaching it?
Are the 4 inputs all columns in a table or are will they 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
April 4, 2008 at 9:41 am
I usually say Sequel, fewer syllables, thus more effiient and we all know performance is important:P
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
April 4, 2008 at 9:09 am
If you are using a sub query you want to use IN like this:
Update TableA
Set ColumnA = 'Test'
Where
ColumnB In (Select...
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
April 4, 2008 at 9:01 am
Glad to help.
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
April 4, 2008 at 8:57 am
I have SP2 installed and did not have any issue creating a job in SSMS. Have you tried creating a job using the job creation SP's directly?
Are you having...
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
April 4, 2008 at 8:56 am
That has been my typical approach as well Grant. I am looking for the hard core performance guru's approach as well.
This question assumes that the update is being done...
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
April 4, 2008 at 8:37 am
Make sure you lookup SQL Injection before releasing any web page that allows this.
Do you want to provide "drag and drop" type functionality to select tables and fields or just...
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
April 4, 2008 at 8:28 am
YOu executing the insert on the remote server not the local server so there is not an identity value being created in the scope of the local server. If...
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
April 4, 2008 at 8:25 am
You need to create Linked Servers between the Servers. Then you they can reference each other.
For instance on ServerA you create a Linked Server to ServerB. On ServerA...
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
April 4, 2008 at 8:08 am
I don't know of any off the shelf components that would do this as I have never given users that kind of permission.
The first thing I would do...
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
April 4, 2008 at 7:59 am
Anthony K. Valley (4/4/2008)
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
April 4, 2008 at 7:00 am
I have to agree with Gail. If there are indexes that will help regularly run queries it is a "best" practice to add them.
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
April 4, 2008 at 5:54 am
I'm not sure if this is designed behavior, but this section:
IF @LOCKSTATUS=0
BEGIN
SELECT
@LOCKSTATUS=COUNT(*)
FROM
LOCK (NOLOCK)
WHERE
TABLENAME=@TABLENAME AND
ROWID=@ROWID
IF @LOCKSTATUS=0
BEGIN
INSERT INTO LOCK
(
TABLENAME,
ROWID,
USERID
)
VALUES
(
@TABLENAME,
@ROWID,...
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
April 3, 2008 at 2:11 pm
DBA (4/3/2008)
so a good value is above 40?
Any value you want to be aware of is going to vary based on your baseline and setup. As I said, this...
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
April 3, 2008 at 1:06 pm
Viewing 15 posts - 8,881 through 8,895 (of 9,643 total)