Viewing 8 posts - 1 through 8 (of 8 total)
This might not be the most elegant way to do it but it seems to have worked for me whenever I encountered this same problem.
I prefer to write a stored...
October 6, 2005 at 3:32 pm
Excellent question! I've always believed understanding the fundamentals is the only way to REALLY understand what you are working with.
DG
September 28, 2005 at 2:38 pm
When you assign a property through a dynamic properties task, the query you create must return only one value. It it returns a result set, only the value of the first...
May 3, 2005 at 6:43 pm
Here are the details of the trace i set up:
1)Sql Profiler client is being run from/on same server containing the database
2)Log to database table
3) Only EventClass chosen is TSQL-SQL:BatchStarting
4)LoginName like 'the user'
5)ApplicationName...
January 31, 2005 at 4:02 pm
Thanks Tom,
Sorry I did not mention it but I have tried this approach already and have unfortunately experienced performances issues. I believe I have set up my filters to be...
January 31, 2005 at 3:11 pm
Thanks Frank. I was trying to avoid dynamic sql myself but that looks like the route I have to take. Thanks everyone for their help.
December 21, 2004 at 5:21 pm
Thanks for the suggestion. That is how I originally wrote the query but unfortunately in my real-life case the variable that @name corresponds to has about 18 different possibilities (not...
December 20, 2004 at 5:48 pm
Thanks for the reply. I changed my code to:
/***************************************/
DECLARE @Name varchar(30), @Firstname varchar(30), @ID varchar
SET @Name = 'y' -- 'y' = get info by firstname, 'n' = get info by...
December 20, 2004 at 11:30 am
Viewing 8 posts - 1 through 8 (of 8 total)