Viewing 15 posts - 1,351 through 1,365 (of 1,412 total)
Antares, will that work? The first part I mean, the ORDER BY clause. I thought you needed to have all sort columns of the same data type, that's why I...
September 6, 2002 at 5:15 am
You can also change it to this:
ORDER BY CASE WHEN @SortBy = 'CompetitorID' THEN CompetitorID END
, CASE WHEN @SortBy = 'Name' THEN LastName END
, CASE WHEN @SortBy = 'State' THEN...
September 6, 2002 at 1:40 am
SQL1: To allow SQL Server to use more than 2GB of memory, AWE needs to be enabled.
SQL2: Well, SQL will always leave about 180MB (I think that's the amount, could...
September 6, 2002 at 1:23 am
Î was amazed to find that a normal SELECT COUNT(DISTINCT columnname) FROM SOMETABLE didn't work... Thought Access 2000 supported most of the syntax in SQL 2000. Well, this query works...
September 5, 2002 at 12:59 am
quote:
http://www.nextgenss.com/software/ngssniff.html
David, I've been trying to download both NGSSniffer and NGSSquirrel a while now,...
September 5, 2002 at 12:50 am
The only editions of SQL Server 2000 that can be run on Win2k Pro is Personal, Developer and Desktop. All of these are limited by a concurrent workload governor. Desktop...
September 4, 2002 at 3:31 am
quote:
The clustered index is stored as actuall data so you will need more space to store and use such an index.
September 4, 2002 at 1:40 am
August 29, 2002 at 3:32 pm
I would avoid the temporary table if possible. Just wrote an answer to a similar question on another forum, I'll cut & paste it here and you can change it...
August 29, 2002 at 6:07 am
* Play Fussball
* Play snooker
* Sit in the sun and drink beer
Forgot: Read a good SQL book!
Chris Hedgate @ Apptus Technologies (http://www.apptus.se)
Edited by -...
August 28, 2002 at 5:29 am
katravax, you are absolutely right. My mistake of course, don't know what I was thinking of.
Chris Hedgate @ Apptus Technologies (http://www.apptus.se)
August 26, 2002 at 2:23 pm
I would give them some question where the easy answer would be a cursor, but the little-bit-harder answer would be a set-based solution. Not too difficult of course, just to...
August 23, 2002 at 10:47 am
Have you tried changing the network packet size configuration option with sp_configure?
Chris Hedgate @ Apptus Technologies (http://www.apptus.se)
August 23, 2002 at 10:35 am
I tried this on Oracle now and it was as I thought, the results where:
a b
---
1 2
1 2
So, the correct SQL Server version of the Oracle example you gave would...
August 22, 2002 at 8:53 am
If I understood you correctly, you want to change the password of the domain user that SQL is running as. After you've changed the password, just make sure to update...
August 22, 2002 at 8:42 am
Viewing 15 posts - 1,351 through 1,365 (of 1,412 total)