Viewing 15 posts - 46 through 60 (of 63 total)
webrunner (2/6/2009)
The "(s)" doesn't make...
February 8, 2009 at 9:37 pm
It sounds like the package can't access the password because it's encrypted.
You may need to look at the Security -> ProtectionLevel on the Package.
Since you're running under a different user,...
February 8, 2009 at 5:56 pm
This could be a very risky script for people to use for two reasons:
* Column Names are typed SYSNAME, which is NVARCAHR(128) , not VARCAHR(30)
* You use...
February 5, 2009 at 6:40 pm
Unfortunately, your return string is not quite big enough:
SELECT dbo.fnSpellInteger ( 1999999999 )
Gives me:
One Billion Nine Hundred Ninety-Nine Million Nine Hundred Ninety-Nine Thousand Nine Hundred Ninety-
The function would be better...
February 4, 2009 at 7:02 pm
Jeff Moden (1/29/2009)
Tim Wilson-Brown (1/29/2009)
Lowell (1/28/2009)
in that case, it is impossible, unless you modify your table to include an identity column.
Which is not reliable either - what if the identity...
February 1, 2009 at 2:39 pm
Lowell (1/28/2009)
in that case, it is impossible, unless you modify your table to include an identity column.
Which is not reliable either - what if the identity values wrap?
There should be...
January 29, 2009 at 8:08 pm
Going a long way back to one of LCAD's initial posts:
LCAD (1/22/2009)
January 29, 2009 at 3:18 pm
Could you please post SQL Server 2000 questions in the SQL Server 2000 forums next time?
January 28, 2009 at 3:31 pm
YSLGuru (1/27/2009)
January 27, 2009 at 6:48 pm
serge.kovacs (1/26/2009)
January 26, 2009 at 10:25 pm
Alvin Ramard (1/26/2009)
Set up your connection manager with static path. Then, before the actual export, use a script task to change the connection string of the connection manager.
You could...
January 26, 2009 at 9:59 pm
serge.kovacs (1/22/2009)
Indexing shouldn't be a problem. Every table has a primary key and is only accessed via this key (except of course for the initial load...)
It sounds like you've just...
January 26, 2009 at 5:04 pm
You need to use the second expression I gave you, and substitute your expression for yesterday where I put [Yesterday].
Then you need to check that you actually get the results...
January 21, 2009 at 10:37 pm
The suggested VB solution could be very slow because it involves generating each of the times separately.
Here are some other options:
Filter On Yesterday's Date/15 minutes by using a SQL Query...
January 21, 2009 at 9:52 pm
Viewing 15 posts - 46 through 60 (of 63 total)