Viewing 15 posts - 46 through 60 (of 62 total)
I built a partitioned table by generating a persisted column which generates the least significant digit of the user's User_ID identity column.
Alas! We didn't get the performance improvements we...
June 29, 2010 at 7:13 am
Geez Steve, I'm a rookie here so I don't get to contribute very often, but I always find helpful information when I visit here and am looking for something. ...
May 14, 2010 at 8:18 am
Hey Sandy.
I'm not the "expert" that you seek, but I can offer a couple of thoughts.
I prefer to write as much of my stuff in Stored Procedures which I then...
March 24, 2009 at 12:53 pm
Yikes! I always reluctant to post code up here Jeff because I'm such a neophyte when it comes to the inner workings of SQL Server, but I'll paste it...
March 23, 2009 at 7:38 am
A thousand "Thank you's to you Barry!"
I had searched BOL using various combinations of Stored Procedures and multiple result sets etc to no avail. Your advice had me look...
March 20, 2009 at 4:07 pm
Many thanks again Richard.
The ExecuteNonQuery() call was already present, but I restructured the loop a bit so that it only initialized the OracleConnection object once before entering the foreach( )...
July 8, 2008 at 12:55 pm
Wow!
Thanks a bunch Richard! Let me tear back into my code and see what I have it doing now. I think I figured out the ExecuteNonQuery() piece, but...
July 8, 2008 at 7:40 am
Oops! I forgot to explain that the TLog_Store_Summary table currently contains hourly data, so in order to summarize it with a view into a set of "daily" numbers by...
May 14, 2008 at 2:59 pm
Wow! Thanks for the rapid replies Matt and Jason!
I continued playing around with T-SQL code until I discovered that the SUM( ) function will allow me to SUM multiple...
May 14, 2008 at 2:53 pm
Roy,
The quickest/easiest/simplest way to do it is to perform a SELECT INTO in a stored procedure that you can easily execute on the fly or execute it from the Scheduler...
May 14, 2008 at 2:15 pm
Hey Terry!
Aside from a small syntax change, I think what you wrote might work!
Set oNewPkg = CreateObject("DTS.Package")
oNewPkg.LoadFromSQLServer "SXADISCOVERY", "", "", "256",,,,"LKruseTestPkg2"
sTmp = ""
sFilePath = oNewPkg.GlobalVariables("gv_FileName")
For...
March 5, 2007 at 4:30 pm
Hey Terry! Thanks again for the info.
I've sent you a PM to clarify what I'm trying to do.
March 5, 2007 at 10:10 am
No, I don't think you are wrong Lee, I think that there might be more variables involved however.
I have a package with 1 single SQL Source. I have 20 destination...
March 2, 2007 at 11:06 am
I tried to implement the suggestions made by Terry, but I can't get it to work like I need it.
here's the set-up for it:
I have an existing package which contains...
March 2, 2007 at 10:35 am
Dan,
In my reference, it looks like there are multiple methods available to save the package programatically. Have you tried using those to persist those values?
February 23, 2007 at 9:24 am
Viewing 15 posts - 46 through 60 (of 62 total)