Viewing 15 posts - 8,266 through 8,280 (of 9,643 total)
Chris Morris (7/25/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
July 25, 2008 at 6:45 am
Can you attach the rdl file to the thread so I can see how you are trying to do the report? Are you sure your report data source is...
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
July 24, 2008 at 2:09 pm
If the trace is running on server dd2 then the trace file is being created on that server so it does not exists on dd1. You could set the...
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
July 24, 2008 at 2:00 pm
Bah! Mangers!
The code you are writing should work. I created the following in AdventureWorks and it works fine:
Trigger
[font="Courier New"]
CREATE TRIGGER HumanResources.Department_Upd
ON HumanResources.Department
AFTER UPDATE
AS
BEGIN
...
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
July 24, 2008 at 1:41 pm
The Senior DBA only needed to grant ALTER TRACE rights.
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
July 24, 2008 at 9:34 am
What is the hardware (CPU, RAM, Disk Setup)?
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
July 24, 2008 at 9:32 am
Sure execute sp_helptext [proc name]. It will really be a pain to try to parse that result to find column names since there can be n selects in...
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
July 24, 2008 at 9:08 am
I don't think that there is a way to tell what SQL was executed to cause a trigger to fire. The best way to maintain that table is to...
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
July 24, 2008 at 9:05 am
There is nothing in the Information_Schema unless you want to parse the text of the sp. You could just send in criteria, if there are any, that you know...
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
July 24, 2008 at 8:48 am
I don't think that there is a builtin way to restrict the # of users that run a report concurrently. I think you will have to go with checking...
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
July 24, 2008 at 8:22 am
Has the production database been setup yet? If not you can do a backup of the QA database and restore it on the production server and now it is...
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
July 24, 2008 at 8:12 am
Could be blocking. What version of SQL Server are you running? If it is MSDE it could be that you need to get a pay version as MSDE...
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
July 24, 2008 at 8:09 am
I'm with you on that. That's why I try to post regularly. So I can learn 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
July 24, 2008 at 8:06 am
From SQL Server 2000 BOL sp_start_job:
"Permissions
Execute permissions default to the public role in the msdb database. A user who can execute this procedure and is a member of the sysadmin...
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
July 24, 2008 at 8:04 am
In your test data there is no way to do a single update because any criteria you use will update all the aa with a distinct bb value. I...
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
July 24, 2008 at 7:55 am
Viewing 15 posts - 8,266 through 8,280 (of 9,643 total)