Viewing 15 posts - 1,876 through 1,890 (of 9,644 total)
Sounds like you need to use the Lookup Component. The Lookup Component is like a JOIN in SSIS. You define the source of the lookup and the column(s)...
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
January 12, 2012 at 7:48 am
DeanORenO (1/9/2012)
pl;'ol';/l
Wow, I looked at this because I thought I might be able to help, but I can't because you apparently edited the post into nonsense. Plus you insulted...
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
January 12, 2012 at 7:45 am
GilaMonster (1/12/2012)
Bex (1/12/2012)
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
January 12, 2012 at 7:33 am
SQL Kiwi (1/11/2012)
Jack Corbett (1/11/2012)
Oh, and as far as inserting a NULL code, you shouldn't have NULL's:-P
:laugh: But seriously, the example code did not specify NOT NULL as...
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
January 11, 2012 at 11:24 am
Thanks Gail and Paul. I always learn something when y'all post.
Oh, and as far as inserting a NULL code, you shouldn't have NULL's:-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
January 11, 2012 at 11:13 am
SQL Kiwi (1/11/2012)
DECLARE @MYCODE int = NULL
DECLARE @ID int = NULL
DECLARE @OUTPUT TABLE (ID int)
MERGE...
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
January 11, 2012 at 10:45 am
Dev (1/11/2012)
SQL Server Logins are manageable for Web Applications. Few...
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
January 11, 2012 at 10:27 am
Little Nick (1/11/2012)
Let's, my same Stored Procedure is execute 500 a day. Did we have special...
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
January 11, 2012 at 10:07 am
GilaMonster (1/11/2012)
Jack Corbett (1/11/2012)
Declare @ids Table (id INT);
IF NOT EXISTS (SELECT * FROM myTable WHERE CODE=@MYCODE)
BEGIN
INSERT INTO myTable (CODE)
...
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
January 11, 2012 at 9:49 am
You can't write directly to a table with a server-side trace. Even if you could it wouldn't be wise as it would not perform as well as writing 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
January 11, 2012 at 9:47 am
How about option 4:
Declare @ids Table (id INT);
IF NOT EXISTS (SELECT * FROM myTable WHERE CODE=@MYCODE)
BEGIN
INSERT INTO myTable (CODE)
OUTPUT Inserted.id into @ids
...
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
January 11, 2012 at 9:40 am
Dev (1/11/2012)
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
January 11, 2012 at 9:33 am
AER (1/11/2012)
Thank you so muck for your help. I totally agree that the Windows Authentication is the most secure way of handling the application pools.
Now since I'm more on SQL...
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
January 11, 2012 at 9:30 am
Little Nick (1/11/2012)
Dim sqlNm As String = ""
Dim sqlNm2 As String = ""
...
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
January 11, 2012 at 9:14 am
Normally with SSIS you would do this using SSIS configurations or by setting a variable value using the command line options. Here are a couple of resources:
http://consultingblogs.emc.com/jamiethomson/archive/2007/03/13/SSIS_3A00_-Property-Paths-syntax.aspx
http://msdn.microsoft.com/en-us/library/cc895212.aspx
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
January 11, 2012 at 9:05 am
Viewing 15 posts - 1,876 through 1,890 (of 9,644 total)