Viewing 15 posts - 1 through 15 (of 40 total)
There are no error messages returned, it's like if there was no configuration file. the package is using its stored configuration values and runs fine...
August 26, 2010 at 5:37 pm
The user running the job in sql agent has access to the network location. The network location is the same where the package is stored.
August 26, 2010 at 9:17 am
jpeacock 94554 (8/5/2010)
Trying to register for the event but the Register link doesn't work! Just takes you through to the "GoToWebinar" site.
Same here...where can I register?
August 5, 2010 at 6:02 am
Hi,
I also agree with the other writers. Use raw SQL statements or create 40 procedures.
If you decide to create the procedures have a look at the ssms toolpack => here
One...
June 8, 2010 at 4:07 pm
No, there is no limit 😀
declare @sqlstr NVARCHAR(MAX)
SET @sqlstr = N'CREATE TABLE defaultTester ('
DECLARE @i int = 0
WHILE @i < 1024
BEGIN
SET @sqlstr = @sqlstr + 'col' + cast(@i...
June 8, 2010 at 11:12 am
AVB (5/25/2010)
June 3, 2010 at 4:28 am
calvo (6/2/2010)
Might you be able to right click and script the job? Then just run the script through SSIS or run it manually on the server?good luck
Hi calvo,
for an initial...
June 2, 2010 at 2:10 pm
Hi,
yes that's what I expected or thought what would happen.
Do you know how this works internally? If it updates col2 to the value of col1 first and later col1 to...
January 12, 2010 at 5:04 am
Hi,
maybe a profiler trace can help to find out what the management studio is doing when it scripts out a job...just an idea 🙂
June 23, 2009 at 3:58 pm
Hi,
I don't know how to override the default behavior. Maybe the BIDS Helpder can help you with the feature "fixed width columns".
http://bidshelper.codeplex.com/Wiki/View.aspx?title=Create%20Fixed%20Width%20Columns
June 23, 2009 at 3:51 pm
June 23, 2009 at 3:47 pm
Hi,
maybe this post (the last "update" at the end of the page) helps.
May 26, 2009 at 12:35 pm
Hi.
try
IF @variable = 1.
(one "=")
May 26, 2009 at 12:28 pm
Hi,
have a look at this article MSDN
There you'll find an example how to use a check constraint with a function.
I hope this helps 🙂
May 7, 2009 at 2:35 pm
Hi,
I think something like this should do the same, except for the userid...
--Edit: forget that...misunderstood your statement
I hope this helps 🙂
April 28, 2009 at 3:34 pm
Viewing 15 posts - 1 through 15 (of 40 total)