Viewing 15 posts - 616 through 630 (of 2,612 total)
If you have a record locked, the READPAST table hint in another query will make the query skip the locked records.
This is typically a bad approach to record locking as...
September 22, 2008 at 5:20 am
Typically, updating records in fact table involves adding a reversal record for the original and then adding a new record. This way, an incremental process will cancel out the...
September 22, 2008 at 5:13 am
First, for the lookup. By default, a lookup component will be in full cache mode. This means that during the pre-execute phase, it will cache all of the...
September 22, 2008 at 5:09 am
You have a couple of options. One is to add a dimension and hierarchy that has the NT User name of each of your users associated with the data...
September 22, 2008 at 4:59 am
MS SQL Server does not perform well doing row-by-row operations. By putting the cursor within your trigger, you have essentially serialized any set-based operation you could have had. ...
September 19, 2008 at 9:21 am
Click on the "Event Handlers" tab.
Be aware that if you put something in the OnError event handler for a package that it will be fired multiple times if something within...
September 19, 2008 at 9:15 am
It's pretty amazing how often an idiot will find a clever way around your safeguards.
The other result will probably be you spending four hours wondering why you cannot restore the...
September 19, 2008 at 9:04 am
Ganesh - verify that when you try to query another table that your process is actually blocked (check sp_who2 for a blocked process). If it is not being blocked,...
September 19, 2008 at 8:50 am
Right-click in the control flow of your packages and turn on logging. You need to log the errors in both the parent and child packages to really determine what...
September 19, 2008 at 8:43 am
You cannot restore to a database if there is an open connection to it. You could simply create a job that executes when the SQL Agent starts. Put...
September 19, 2008 at 8:41 am
I completely agree that calling any kind of activeX object from a trigger is probably a risky proposition.
The logging table / job method should really be done via service broker...
September 19, 2008 at 8:11 am
These issues are usually permissions problems.
Make sure the SQL Agent service account can access the shared folder.
September 19, 2008 at 6:59 am
If you do not delete data from the table, and the order in which the data is inserted cannot be anticipated, a heap like this will allow data to be...
September 18, 2008 at 4:41 am
SSIS does not like changing schema.
You could stabilize the schema by using a second workbook that consists of a bunch of formulas that link it to the actual data you...
September 16, 2008 at 1:08 pm
What is the point? A failover cluster is for hardware redundancy. Are you trying to ensure you don't have a "virtual hardware failure" on just one of the...
September 16, 2008 at 1:02 pm
Viewing 15 posts - 616 through 630 (of 2,612 total)