Viewing 15 posts - 1,726 through 1,740 (of 2,612 total)
One of the easier ways of handling this is to create a package level boolean variable set to False.
In your event handler, check if the variable is true - if...
April 29, 2008 at 12:47 pm
Because of the sequence number (and assuming it is correct that I can assume it positions the expected column values) you can do this with sub-queries. I used CTE's...
April 29, 2008 at 11:37 am
I suggest you find a VB.Net forum and post there.
This is not the correct forum.
I will add - you should not be re-opening and closing the destination connection in your...
April 29, 2008 at 11:15 am
You could add a calculated field to a table to have two fields in the table with the same data and two different names. Or, you could create a...
April 29, 2008 at 10:07 am
It will row version everything. It needs to keep the original copy of anything being used by any transaction because the database engine does not know if you will...
April 29, 2008 at 9:02 am
You may have a table name that needs square brackets.
[font="Courier New"]DECLARE @Database VARCHAR(100)
DECLARE @Table VARCHAR(100)
DECLARE @cmd NVARCHAR(300)
DECLARE @fillfactor INT
SET @fillfactor = 70
SET @Database = ‘TestOnly’
SET @cmd = ‘DECLARE TableCursor...
April 29, 2008 at 8:26 am
Yup - size does matter.
BLOB fields cause this problem a lot.
April 29, 2008 at 7:50 am
I assume the sync table is used by just an insert, a single query, and a delete (basically a queue).
It should be pretty easy to tune this because the activity...
April 29, 2008 at 7:44 am
Without knowing exactly what you are doing this is a bit hard, but I think you have declared your variable at the wrong scope.
Add a sequence container to the loop...
April 29, 2008 at 7:36 am
A check constraint will work, but you take a performance hit so be careful.
I seem to remember there being some kind of 3rd party product for doing this so you...
April 29, 2008 at 7:31 am
You should look at the feature lists for the editions of SQL to make sure you do not need standard edition features.
Per-processor licensing seems a lot for you. Per-user...
April 29, 2008 at 7:25 am
Are you accessing the oracle server with OPENQUERY or by using a 4 part name?
Try both - this may clue you into the issue. If openquery works but 4...
April 29, 2008 at 6:49 am
There are probably a bunch of scripts for doing this, but I wanted to see if I could get something with just a few lines of code. I added...
April 29, 2008 at 6:43 am
You say you are locked into 32 bit because of some delivered apps, but you may want to look into the feasibility of 64 bit.
If you can move the other...
April 28, 2008 at 2:03 pm
Check the Oracle installs and make sure your TNSNames configuration is the same.
Also, since you copied a virtual machine, make sure there is not a DNS conflict of some sort....
April 28, 2008 at 1:52 pm
Viewing 15 posts - 1,726 through 1,740 (of 2,612 total)