Viewing 15 posts - 256 through 270 (of 595 total)
quote:
...but SQL Server doesn't like it...
I know. Annoying, isn't it, that you can't...
July 8, 2003 at 6:42 am
quote:
...What i want is to return rows from first part and only records of second part where B2BError.Warning=2....
July 7, 2003 at 12:34 pm
SQL Server Standard Edition only supports up to 2GB RAM per instance. SQL Enterprise edition can use more, but you must configure advanced options (or possibly AWE if >=...
July 7, 2003 at 7:23 am
There are many, many things that you can do to improve this procedure, and I'm sure you'll get a bunch of comments about all those things; however, the first thing...
July 7, 2003 at 7:10 am
You would want to insert the salaries into a temp table that has an identity field in it, inserting the values in the order you need, then select the row...
July 7, 2003 at 6:27 am
Analyze the Execution plan for both the sproc and the statement in QA to see whre the differences are. Also, have you recompiled the sproc?
July 2, 2003 at 6:09 am
You can use the Errors Collection of the ADODB.Connection object to obtain error information returned from SQL Server. Be sure, however, that you stored procedures properly issue a RAISERROR...
July 2, 2003 at 6:00 am
You need to qualify the Sender field with the tablename it belongs to that you are searching on. SQL is complaining that it has found two tables in your...
July 1, 2003 at 12:06 pm
Look for a non-fully-qualified field of Sender in your WHERE clause. The SELECTs look fine.
July 1, 2003 at 11:50 am
I guess this brings up the issue of why was PetCo even storing the credit card numbers in the first place...I've heard of some situations where the vendor would need...
July 1, 2003 at 11:11 am
My theory was that since the bitwise AND operator tells you whether or not "this bit pattern is a subset of that bit pattern", an index on the INT field...
July 1, 2003 at 6:40 am
You could consider creating a permanent table storing the max date for each account number (essentially making your derived table permanent). This would improve performance since tempdb would not...
June 27, 2003 at 1:25 pm
Have you set up a valid DSN on the server for MS Jet 4.0?
June 27, 2003 at 1:17 pm
Viewing 15 posts - 256 through 270 (of 595 total)