Viewing 15 posts - 481 through 495 (of 2,612 total)
Just giving the column a DEFAULT will not help you. Your third party application is not aware of the column, so it is not going to include the DEFAULT...
November 3, 2008 at 12:44 pm
When the package is being run from a job or from xp_cmdshell, it runs on the SQL Server. First, this server must be an SSIS Server (not just an...
November 3, 2008 at 12:39 pm
I would start by saying that starting a job with a trigger is probably not the right solution - regardless of the problem. A trigger is designed to be...
November 3, 2008 at 12:34 pm
When a user disconnects, all SQL Server locks are released. You cannot have a resource locked without the associated spid. So, if you have users that are not...
October 27, 2008 at 12:01 pm
You will have a couple of security issues. First - the running of the job. The best way to lock this down is as follows:
- Add the login...
October 27, 2008 at 5:07 am
Both will result in a table or index scan because indexes will be basically worthless, but the second one (using the function) will be slower because the function must be...
October 23, 2008 at 12:54 pm
Your two requirements:
- Create multiple threads for a stress test
- Continously loop the task for a load test.
These would also tend to direct me toward Service Broker. A queue...
October 22, 2008 at 6:08 am
Your description of what you are trying to do is misleading.
I think you are trying to author reports using Visual Studio / BIDS 2008 and publish them to a Reporting...
October 22, 2008 at 5:55 am
I guess the first question is if there is a parallel period. In the case of a week 5 that is in a different month, what should it do?...
October 22, 2008 at 5:52 am
Yes, if the files end up in the same logical location, you can simply move them and start the SQL Services.
If they are not in the same logical location, you...
October 22, 2008 at 5:46 am
The emails are only on a failure of a step, so a single job seems to meet all of the given requirements.
October 21, 2008 at 11:01 am
What is the problem with creating a single Job Agent job with a step for each package?
October 21, 2008 at 8:21 am
Service broker would still require you to enter something into the broker queue - so you would need a trigger anyway. The advantage to using service broker would be...
October 21, 2008 at 7:42 am
My first recommendation would be to move ColdFusion to another server. MS SQL is much more efficient when it is not competing for hardware resources - particularly memory intensive...
October 21, 2008 at 7:37 am
You cannot do this.
Perhaps you could post what you are actually trying to do and someone can help you design a solution that will work.
October 21, 2008 at 6:07 am
Viewing 15 posts - 481 through 495 (of 2,612 total)