Viewing 15 posts - 1 through 15 (of 20 total)
I agree with all of Steve's choices with the editoral, but must admit I have found new choices of music(rock) that I don't have to worry about what my kids...
February 10, 2007 at 7:37 am
This doesn't answer your question, but I wanted to add that it would be great to have a SQL SIG reference document on this site. Location and possibly contact person...
April 19, 2006 at 8:24 am
Jonathan - I really like this idea! It's quick and it does the job. Thank you for sharing.
February 9, 2006 at 10:00 am
I know this isn't part of the question, but for performance (I'm not sure how many records you have in your view...) How about:
if exists (select top 1 * from...
February 8, 2006 at 7:32 am
Thank you everyone for your replies. I have ordered the first book listed and am checking into the other resources provided.
Thanks again.
Shawn
September 20, 2005 at 8:42 am
I'll give that a try, thanks again for all your help.
March 17, 2004 at 11:04 am
Thanks for the link. It has some excellent suggestions. I'm doing a stored proc and using a global variable as a parameter, which works well to get the data.
This process...
March 17, 2004 at 9:15 am
You know, I never questioned that since it was generated (the code) by DTS. I will take the spaces out of the transformation code and try it. Thanks for the...
March 17, 2004 at 8:56 am
The customer id is being set with a global variable which I am supplying with the \A parameter on DTSRun. It's working since I see the value in the email...
March 17, 2004 at 8:05 am
Here is the transformation code:
'**********************************************************************
' Visual Basic Transformation Script
'************************************************************************
' Copy each source column to the destination column
Function Main()
if DTSGlobalvariables("Customerid").value = "3245" then
DTSDestination("note ") = DTSSource("note")
end if
Main = DTSTransformStat_OK
End Function
Here...
March 16, 2004 at 2:22 pm
Thank you for the reply. I tried this and it doesn't like that the column doesn't exist in the destination file. For one customer the column will exist and all...
March 16, 2004 at 12:48 pm
I always use as an attachment instead of the body of the email.
@attach_results = 'true'
February 26, 2004 at 9:57 am
Try the @Width= 'your size here' parameter.
February 25, 2004 at 8:31 am
I had this same problem once and it ended up being we had an older version of MDAC on the server than I had on my Desktop where I created the...
January 14, 2004 at 10:17 am
My .02 worth...I always (at my previous
employer) used a prefix. tb_ for tables,
usp_ for stored procs and vw_ for views.
Comes in handy when you do a sp_help and
list all...
October 29, 2003 at 8:21 am
Viewing 15 posts - 1 through 15 (of 20 total)