Viewing 15 posts - 1,366 through 1,380 (of 1,412 total)
GAL0303 is absolutely right, do it the relational way instead. A search for people who speak some languages is much easier that way:
SELECT * FROM PERSON p
INNER JOIN LANGUAGE_SPOKEN ls
...
August 22, 2002 at 8:32 am
quote:
I seem to recall from the standard that row comparisons are done from left to right, i.e. if col_c = val_1 but...
August 21, 2002 at 8:14 am
SQL Server can't do row comparisons (that is, multiple values compared to eachother). The example Antares686 showed will probably work, but I seem to recall from the standard that row...
August 21, 2002 at 6:34 am
Is there any triggers on the table? Any other columns being updated?
Chris Hedgate @ Apptus Technologies (http://www.apptus.se)
August 20, 2002 at 10:06 am
Include the objectid column in the trace, it will contain the object_id of the table scanned. Then use SELECT OBJECT_NAME(123456789) to get the name of the table, where 123456789 is...
August 20, 2002 at 2:09 am
Haven't tried it yet (will do tonight), but that's what I thought as well. The total amount of memory used on the server seems to reflect this.
Chris Hedgate @ Apptus...
August 19, 2002 at 9:16 am
Wouldn't this work?
SELECT MyFunction(userid)
FROM MYTABLE
WHERE userid = some_criteria
Chris Hedgate @ Apptus Technologies (http://www.apptus.se)
August 19, 2002 at 6:53 am
Thought I'd post a quick followup on this. Did the upgrade this saturday and enabled AWE memory usage, without any problems at all. Funny thing though, it seems that sqlservr.exe...
August 19, 2002 at 3:08 am
I think that depends on what OS you are running. As I've understood it, the /3GB switch is not available on Windows 2000 Server, only on NT4 Ent and Windows...
August 17, 2002 at 1:54 am
OK, great. We are running SQL 2000 Ent, so I think we're OK there , but yes, we need to upgrade to Windows 2000 Advanced Server to...
August 16, 2002 at 1:47 am
As far as I've understood, the /3GB switch is not available in Windows 2000 Server?!?
We have Windows 2000 Server and SQL 2000 Enterprise Edition, which should give us the possibility...
August 16, 2002 at 1:03 am
quote:
I thought I had a reference that shows where a clustered index is better than a heap in terms of performance, but...
August 12, 2002 at 5:07 am
Not sure if anyone monitors this feedback discussion any longer, but still. I am not sure as to whether I prefer case-sensitive or case-insensitive behavior on database level. I understand...
August 7, 2002 at 3:29 am
Why do you not want to use dynamic SQL? If you use sp_executesql and write it correctly your execution plans will be reused. If you use SET ROWCOUNT the optimizer...
November 15, 2001 at 8:44 am
Bringing back an old one...
Just wanted to inform you guys that I finally got around to verifying this and MS has confirmed it as a bug in SP1.
Chris Hedgate @...
November 13, 2001 at 3:22 am
Viewing 15 posts - 1,366 through 1,380 (of 1,412 total)