Viewing 15 posts - 91 through 105 (of 121 total)
Todd,
Thanks for the input. I ran the migration wizard and it looks like they all imported correctly. But I'm going to go thru them all tomorrow with a developer...
November 9, 2007 at 12:39 am
Mark,
I don't have any heterogeneous connections to Oracle/Sybase, etc. They are all native SQL connections and data load packages.
So you're saying that I could have a companion SQL 2000...
November 8, 2007 at 9:48 am
I agree with you statement about not being a huge fan of automatic fail-back until you've confirmed that everythign is fine on the server.
I'll take a look at the ALTER...
August 30, 2007 at 12:14 pm
Aaron,
Thanks for your input. It's greatly appreciated. I'll take a look at what you suggested.
What type of network issues could possibly cause this? Any ideas?
What about a role change script to...
August 30, 2007 at 11:49 am
Grant,
Thanks for your input as well! I'll try your suggestion about the "IN" and using a "JOIN" instead.
May 23, 2007 at 4:23 pm
Gail,
Thanks so much for your wealth of input! I will try your recommedations.
May 23, 2007 at 4:20 pm
Jason,
Thanks for your speedy response. I'll try to address your questions.
1. My understanding is that the logic in this query should check duplicate transactions with the passed criteria since 12am of...
March 21, 2007 at 10:01 pm
Ok, thanks to all of your guys input. That's what i wanted to know if you could still perform "online" indexing operations while it was in 8.0 compatibility mode.
February 9, 2007 at 10:04 am
Thanks Russel! And thanks for everyone else's input also. It was a "datetime" field BTW. That's exactly what I'm looking for. I'll try it out. Much appreciated!
December 27, 2006 at 11:02 am
Here's the sample data: '2006-12-06 10:26:27.170'
What I'd like to retrieve are the transactions that are in the following format: '2006-12-06 10:26:27'
Excluding milliseconds as shown in this datetime example. All records...
December 26, 2006 at 3:53 pm
R2ro,
I made a mistake. The last column is NOT a bit field, it's an int and it's not indexed.
DBA Dave
May 18, 2005 at 1:43 pm
Thanks Remi! I'll try this. A developer created a Recurring Payment Service with .NET that processes the Recurring Payment transactions that are scheduled to process for the current date. But in some cases,...
March 22, 2005 at 3:02 pm
Remi,
I'm still having trouble with this logic. The developer came back and gave me the following logic to use in an sproc:
If CancelDate <= getDate() then status = 3 '...
March 22, 2005 at 2:37 pm
create trigger tr_upd_payment_bal
on ExtendedPayment
for update as
if update(completed)
begin
update ExtendedPaymentsInfo
set ExtendedPaymentsInfo.PaymentBalance = ExtendedPaymentsInfo.PaymentBalance - deleted.paymentamount
from ExtendedPaymentsInfo,deleted,ExtendedPayment
where deleted.extpaymentsinfoid = ExtendedPaymentsInfo.ExtPaymentsInfoID
and ExtendedPayment.extpaymentsinfoid = ExtendedPaymentsInfo.ExtPaymentsInfoID
end
March 17, 2005 at 3:30 pm
Viewing 15 posts - 91 through 105 (of 121 total)