Viewing 15 posts - 271 through 285 (of 576 total)
Let me get this right, for the following records below for ROODVELT, What your saying is that the t1 has the forst record with a sequenceid of 1 and the t2...
January 25, 2005 at 7:26 pm
PW,
I have clarified the rquirement from the BA and I have misunderstood something minor.
What you have done is exactly what I needed, now I just have to SELECT the NULL...
January 24, 2005 at 4:44 am
PW,
You have just discovered a flaw in the requirement. I will go back to the Business Analyst and inform him of this.
Thanks so much for understanding what I'm trying to...
January 21, 2005 at 6:10 pm
For ROODVELDT it would be,
PETER CORNELIUS ROODVELDT REHAB 2004-08-02 00:00:00.000 2004-10-11 00:00:00.000
PETER CORNELIUS ROODVELDT PENSION 2004-10-12 00:00:00.000 2004-10-12 00:00:00.000
PETER CORNELIUS ROODVELDT REHAB 2004-10-12 00:00:00.000 NULL
The < 30...
January 21, 2005 at 5:55 pm
PW,
Your solution works well for the <30 Days calculation but how do I treat it as 1 record when its < 30 Days? Could I please get you or anyone...
January 21, 2005 at 5:25 pm
Is there anyone that can help with the dilemma I'm in? Surely there is someone or all of you that has understood what I need to do!
January 21, 2005 at 3:54 pm
Check to see that the Subscriber has enough disk space to perform the snapshot.
January 3, 2005 at 4:36 pm
Are you sure the T-SQL Debugger has been installed on the SQL Server?
January 3, 2005 at 4:32 pm
At what time of the day will the Transactions be replicated? If it's after hours then 10mbps is plenty. If you will be doing replication during business hours then I...
December 29, 2004 at 4:35 pm
I don't believe replication is the issue here however, I could be wrong!
Nevertheless, I would begin by perfroming some QA of the transactions that are in the Distribution Database compared...
December 29, 2004 at 4:03 pm
What Replication model are you using?
Does this error occur when the initial Snapshot takes place or when the transactions are been replicated to the Subscriber?
December 29, 2004 at 3:58 pm
Why not use Transactional Replication? You will still have to do the initial snapshot of the entire data and after that, only insert/update & delete transactions will replicate.
December 23, 2004 at 7:21 pm
Thanks to all for your responses. They are all valid responses and they all work as far as I'm concerned. However, I have been doing some playing around and I...
December 22, 2004 at 6:48 pm
I usually DECLARE a variable for example,
DECLARE @Identity INT
SET @Identity = SCOPE_IDENTITY()
SELECT @Identity
It's safer to use SCOPE_IDENTITY() as oppossed to @@Identity because SCOPE_IDENTITY runs within it's own scope and you...
December 22, 2004 at 6:36 pm
The Payment_ID Column sounds like the Primary Key in tbl2. If you could Insert the Payment_ID into tbl1 based on tbl2 voucher_number, then updating tbl2 payment_date would be very simple.
December 21, 2004 at 4:01 pm
Viewing 15 posts - 271 through 285 (of 576 total)