Viewing 15 posts - 1,711 through 1,725 (of 2,612 total)
No query hints in my post either.
I agree - examine the process. Are the users selecting the data that is being updated? How long is the update taking?
If...
April 30, 2008 at 6:51 am
The transaction log file growth can be managed by doing transaction log backups more regularly. The transaction log file will grow large enough to handle the transaction between backups....
April 30, 2008 at 6:43 am
Any time.
In this instance, you probably will not need it.
April 30, 2008 at 6:34 am
Since there are no indexes involved, hardware is the most likely suspect and then parallelism.
Neither server has much for options in the optimization area because they have to do a...
April 30, 2008 at 6:33 am
My guess is that the source schema is changing. You should log errors, but I think you probably have a rather poor DB2 driver (are there any good ones?)...
April 30, 2008 at 6:22 am
You could re-join these with a MERGE JOIN component.
I think you are getting to the point in which you should be considering using the script component or creating a custom...
April 30, 2008 at 6:14 am
Technically, it is a message, not an exception. Something on the SQL end sent an email (I assume in your stored procedure). When you send a mail message...
April 30, 2008 at 6:06 am
There are not a lot of tips and tricks for RS setup. The documentation is pretty good so just follow the steps. If you put Reporting Services on...
April 30, 2008 at 5:48 am
I am assuming that the format of the spreadsheet is the same regardless of the recipient.
This can be done through SSIS by looping through all of the doctors, exporting the...
April 30, 2008 at 5:46 am
The point about the oSQLCommandTimeOut is that you declare this object and never use it.
Replace:
oSQLCommandTimeOut.CommandTimeout = 1000
With:
oSqlCmdList.CommandTimeout = 1000
The oSqlCmdList object is the one that you are using to fill...
April 30, 2008 at 4:43 am
You are trying to use a Data Conversion component on a server or workstation that does not have an SSIS server installed.
The computer EXECUTING the package (not the one it...
April 29, 2008 at 2:03 pm
You set the command timeout on the oSQLCommandTimeOut object but then never use the object again in the function.
You use oSqlCmdList to fill your data adaptor but never set the...
April 29, 2008 at 1:44 pm
You connected to a Database Engine, not an Integration Services Server.
Go back to your instructions and make sure you follow the step:
'In the Server type box, select Integration Services.'
April 29, 2008 at 1:08 pm
Triggers will fire - I have needed that to happen before. I think there may be a setting on the article to disable them though.
April 29, 2008 at 1:04 pm
So you only have a "Running Packages" folder, or you have no folders listed at all in object explorer?
April 29, 2008 at 1:02 pm
Viewing 15 posts - 1,711 through 1,725 (of 2,612 total)