Viewing 15 posts - 91 through 105 (of 605 total)
For a true or false answer there is absolutely no point in setting variables. Cost time in setting up activex script and can be hard to debug. Worthwhile for complicated...
February 9, 2006 at 3:17 am
If you have a situation where you are looking for a true or false answer (as in your qery above), the easiest way to decide which route to take in...
February 8, 2006 at 3:27 am
DECLARE @LOWERDATE DATETIME
DECLARE @UPPERDATE DATETIME
SET @LOWERDATE = '2006-01-01'
SET @UPPERDATE = '2006-01-04'
WHILE @LOWERDATE < @UPPERDATE
BEGIN
PRINT @LOWERDATE
SET @LOWERDATE = @LOWERDATE + 1
END
You can play around with the output to change...
February 8, 2006 at 3:24 am
If:
a)The excel spreadsheet always has same number of columns
b)You want to import the same columns
c)The excel tabname is always the same
...You can use a dynamic properties task to change the...
January 26, 2006 at 9:57 am
Plenty, but not all of the ways are easy if you want to get them back.
Best way if you want to get them back quickly is to copy them onto...
January 25, 2006 at 10:16 am
As a rule of thumb, you appear to be doing the right thing.
Always bulk insert text files into an import and then use a stored procedure to shuffle the data...
January 25, 2006 at 9:25 am
I think the account will also need access to msdb as this is where the packages are contained in terms of system tables.
January 25, 2006 at 9:15 am
This will do it for you:
'**********************************************************************
' Visual Basic ActiveX Script
'************************************************************************
Function Main()
' Initialise dimensions
Dim appExcel
...
January 10, 2006 at 8:26 am
A quick and dirty way as follows. Not too good when it comes to performance but handy if you do not have permissions to create a numbers table in the...
January 10, 2006 at 7:58 am
See this link on this site:
http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=19&messageid=18439
January 6, 2006 at 8:23 am
I posted the code for this at another site.
See this link.
January 4, 2006 at 9:07 am
I take it that you are storing the images as a blob type.
If so, you will need to hack it out. I found this site a while back but never...
January 4, 2006 at 5:42 am
I would.
Call the dts package from the web page by passing in a sql server username and password when calling the package. Like so:
Extract from web page: http://www.sqldts.com/?208,2
============================================================
...
December 20, 2005 at 4:33 am
You will find that this encryption actually points to the current version of the dts package.
If you change the package over time, eventually the link gets lost and the encryption...
December 20, 2005 at 4:16 am
Viewing 15 posts - 91 through 105 (of 605 total)