Viewing 15 posts - 1,441 through 1,455 (of 5,356 total)
To add to this:
I sometimes have the impression, that PM's aren't delivered at once, but rather after some time.
December 16, 2004 at 12:22 pm
...oh, I see. Well, no wonder, I didn't understand. This acronym isn't usual here in Germany ![]()
December 16, 2004 at 8:23 am
If your column don't allow for NULLs, you have to change them to allow for NULLs, or insert a dummy value. But what are you really after???
December 16, 2004 at 8:21 am
I don't understand your reference to JC? ![]()
But I agree Yoda's answer should also be interesting. ![]()
December 16, 2004 at 8:10 am
INSERT INTO tbl2 (fname) SELECT fname FROM tbl1 WHERE ref#='123'
Btw, the # sign isn't really good to be used as a column name. I have seen several threads here, where...
December 16, 2004 at 7:57 am
Google smart and google in the Groups, not the web and you'll find ![]()
December 16, 2004 at 7:52 am
DBCC OPENTRAN might be a start
December 16, 2004 at 5:46 am
The fact that this is default behaviour of SQL Server, does not mean that it cannot be changed. Just explicitely created the PK as nonclustered, like so:
create table #t
(
c1 int primary...
December 16, 2004 at 5:43 am
See, if this helps:
http://www.microsoft.com/resources/documentation/sql/2000/all/reskit/en-us/part3/c1161.mspx
Or search the fora here. This is a FAQ in almost any SQL Server community.
December 16, 2004 at 5:21 am
Hm, maybe Joe Celko knows...
And if he answers, I would like to know why ANSI invented NULL. ![]()
December 16, 2004 at 5:19 am
The result is the same. Actually you should find, when you compare execution plans, that such statement are execute identical. The optimizer should restate it to using JOINs. However using JOINs is...
December 16, 2004 at 4:27 am
What does this return?
select databasepropertyex('your db','recovery')
December 16, 2004 at 2:07 am
IIRC, this number is 4 or 5. Beyond this the optimiser will choose tablescans, because of the sheer amount of possible permutations.
December 16, 2004 at 2:05 am
Even better is to use a language independant format.
Here are some very good thoughts by SQL Server MVP Tibor Karaszi on this topic: http://www.karaszi.com/sqlserver/info_datetime.asp
December 16, 2004 at 2:00 am
...oh, and I forgot, someone who calls himself "admin", needs to be more responsible. This should not happen. You might want to give him a more or less friendly slap...
December 16, 2004 at 1:57 am
Viewing 15 posts - 1,441 through 1,455 (of 5,356 total)