Viewing 15 posts - 3,661 through 3,675 (of 5,356 total)
You should first make sure that you are still supported when you change the configuration yourself.
Frank
October 27, 2003 at 7:40 am
I would say that you've included indexes with your import.
There is a different between 'regular' indexes and 'statistics'.
For further explanation on indexes and statistics I suggest reading BOL. Should...
October 27, 2003 at 7:32 am
I'm reposting my answer from sql-server-performance.com:
I would not force the query optimizer to do something. Hint is a misleading word in this context I think.
What might seem appropriate for the...
October 27, 2003 at 7:16 am
SELECT HOST_NAME()
results in
--------------------
WS110H1009008
(1 row(s) affected)
Frank
October 27, 2003 at 5:46 am
October 27, 2003 at 4:30 am
October 27, 2003 at 4:20 am
quote:
Now I know MS SQL, and I know of the existance of Sybase and Oracle. So what would an open source...
October 27, 2003 at 1:18 am
Sorry, you should see something like
DoubleSize NotDoubleSize
----------- -------------
30 15
(1 row(s) affected)
Frank
Edited by -...
October 27, 2003 at 12:57 am
Piggy-backing on Phill's answer, this might illustrate it
DECLARE @a NCHAR(15)
DECLARE @b CHAR(15)
SET @a='Why Unicode?'
SET @b = @a
SELECT DATALENGTH(@a)as DoubleSize, DATALENGTH(@b) as NotDoubleSize
Frank
Edited by - Frank Kalis...
October 27, 2003 at 12:56 am
quote:
Don't forget about the problems with Access and database corruption.If you are sharing an MDB file across the network with multiple...
October 27, 2003 at 12:44 am
Does this help
http://www.sqlservercentral.com/forum/link.asp?TOPIC_ID=17563
??
Further explanations you can find in BOL under 'UPDATE'
Frank
October 24, 2003 at 7:23 am
Try it out.
Works here without any issue. Even with having a relationship
Frank
October 24, 2003 at 7:09 am
Hi Wes,
great, that's all I need. I don't want to dive too deep into this and leave them with your answer.
Thanks again!
Frank
Sorry, typo
Edited by - Frank Kalis on 10/24/2003 ...
October 24, 2003 at 6:19 am
Thanks for reply!
I'm not going to decide on this topic.
They just asked me what I think and I said I don't know. But I'm pretty sure they'll get in...
October 24, 2003 at 6:11 am
ok, from BOL
quote:
System stored procedures are the exception because EXECUTE permissions are already granted to the public role, which allows everyone to...
October 24, 2003 at 4:46 am
Viewing 15 posts - 3,661 through 3,675 (of 5,356 total)