Viewing 15 posts - 1,216 through 1,230 (of 1,353 total)
I also started as a developer, albeit as one who had a knack for designing databases from using Access. Eventually my knowledge of SQL grew, and I become the de...
December 10, 2004 at 6:52 am
Don't use sa. You should have a domain SQL Server account which SQL server can use to run jobs. This will allow it to run jobs that go across servers...
December 8, 2004 at 7:40 am
Here's some code I use to run an excel macro called update once my datawarehouse has finished populating. Use the macro to call the function you want.
November 18, 2004 at 7:32 am
When you write the code producing the name of the file, the file actually has to exist, or you get the file not found error.
You could probably get around this...
November 9, 2004 at 7:18 am
To do that last one requires SQL2K or better, because earlier versions don't have the ability to execute a step.
November 5, 2004 at 8:49 am
An administrator can change the sa password in the QA without knowing the current password using sp_password. Eg
sp_password Null, 'New Password', 'sa'
The Null holds the position of the old password.
November 5, 2004 at 7:51 am
Depending on what kind of code you're talking about:
If it's a SQL Task, I would use the QA to debug it.
If it's ActiveX Script, I debug in MS Visual Basic. ...
November 5, 2004 at 7:13 am
You could also consider using an .ini file to hold the variable which would then be referenced by each package. Somewhere on this fine website is an article to the...
October 19, 2004 at 7:42 am
Also check to ensure that your package is running under a real user rather than the local administrator account.
October 19, 2004 at 7:32 am
I am not certain if you mean that there are multiple email messages and that the recepients are getting all but the final email, or if there is a single...
October 14, 2004 at 6:28 am
Have you tried eliminating the quotes altogether?
October 14, 2004 at 6:26 am
This seems a little more elegant, though I don't exactly know why it works. I haven't converted it to what you want but you can do that easy enough. The...
October 7, 2004 at 1:55 pm
You're welcome. You may want to consider writing your code this way, as it's less lines than you've written. The value would go after the field lengths, but the following...
September 23, 2004 at 9:12 am
I would not write transactions if I don't need to, but if I need to, performance would have to yield to data integrity. If the performance were terrible, I might...
September 23, 2004 at 7:13 am
Viewing 15 posts - 1,216 through 1,230 (of 1,353 total)