Viewing 9 posts - 1 through 9 (of 9 total)
Microsoft has stated their intent to remove anything but Windows authentication for SQL server so you may have to rethink this strategy.
August 11, 2003 at 8:35 am
quote:
Fix: Uninstall SQL Server. Install Oracle.(I like these easy ones)
Oracle has its own set...
June 24, 2003 at 8:31 am
I have to say though, with the app your talking about, I am not big on hints and never have been.
dovidf>
I worked extensively in an Oracle environment prior to the...
June 24, 2003 at 8:19 am
NOLOCK should just affect the locking behavior and any slow downs due to waiting for locks to clear would be solved. If the incidence of lock contention is low, then...
June 10, 2003 at 8:31 am
quote:
In response to your last statement regarding milliseconds, this is exactly what I'm talking about. Everyone has something that somehow makes them...
March 24, 2003 at 4:04 pm
quote:
Not being too familiar with PL/SQL, can you give an example? I've heard it is a more powerful languange, but not any...
March 20, 2003 at 9:39 am
quote:
Not being too familiar with PL/SQL, can you give an example? I've heard it is a more powerful languange, but not any...
March 20, 2003 at 9:35 am
The onely way to have true 24x7 is with multimaster replication which even Oracle parallel server doesn't really have. This would require one or many servers that can independently handle...
January 23, 2003 at 8:31 am
replace AND (Customers.Acc_Type = Accounts.Type OR Accounts.Acc_Type = 'ALL')
with
AND (Customers.Acc_Type = Accounts.Type) OR (Customers.Acc_Type <> Accounts.Type and Accounts.Acc_Type = 'ALL')
November 5, 2002 at 9:23 am
Viewing 9 posts - 1 through 9 (of 9 total)