Viewing 15 posts - 361 through 375 (of 921 total)
quote:
we've got way too much Compaq stuff and zero IBM in house, and way too little staff, to change right now.
December 8, 2003 at 7:56 am
quote:
Ok, if I spend the $ for SQL EE why not go with more memory? Is it because you think it...
December 8, 2003 at 7:28 am
A self-join won't really help because you'd still need to exclude the rows with any IDFromTable1 where IDFromTable2 is excluded. If you don't already have one, try putting an...
December 8, 2003 at 6:27 am
Again I'll be iconoclastic with my (gratuitous) advice. If you are ready to spend enough money to buy 32GB on a server, and this is not a mission-critical (i.e....
December 8, 2003 at 5:56 am
I'm going to guess that the query against the larger table exceeds the cost threshold for parallelism (while the smaller does not), causing this problem. Try using the MAXDOP...
December 8, 2003 at 5:10 am
quote:
What is NDA?
That's the Nondisclosure Agreement that one must sign in order to get the...
December 8, 2003 at 4:56 am
quote:
Why is the behavious different when comparing columns in a select statement, as oppose to comparing variables?
December 6, 2003 at 12:35 pm
You're not doing anything wrong; that's how the identity property works. For this reason, one should not rely on the identity property always incrementing without gaps. Think of...
December 6, 2003 at 12:18 pm
quote:
quote:
Your two "answers" seem to be for a different question from that asked...
December 6, 2003 at 10:54 am
quote:
I think one ship_location can accept more than one shipper
That's what...
December 6, 2003 at 8:17 am
Have you read the relevant MS Knowledge Base articles, e.g. How to Monitor SQL Server 2000 Blocking?
--Jonathan
December 6, 2003 at 6:17 am
SELECT Table_Schema + '.' + Table_Name
FROM INFORMATION_SCHEMA.COLUMNS
WHERE OBJECTPROPERTY(OBJECT_ID(Table_Name),'IsUserTable') = 1
AND Column_Name = 'YourColumnName'
--Jonathan
December 6, 2003 at 6:05 am
If this is SQL Server 2000, I'd use a UDF with a constraint, but if you've got to use a trigger, perhaps something like this:
CREATE TRIGGER...
December 6, 2003 at 5:10 am
CAST(LTRIM(STR(@Tax1,9,6-PATINDEX('%[^0]%',REVERSE(@Tax1)))) AS char(16))
--Jonathan
December 5, 2003 at 3:27 pm
quote:
quote:
Quick brainteaser for our beginning DBA's: what's the quickest method to strip out...
December 5, 2003 at 3:14 pm
Viewing 15 posts - 361 through 375 (of 921 total)