Viewing 15 posts - 541 through 555 (of 806 total)
You can use TEXT which can hold upto 3GB of data.
Cheers,
Crispin
January 2, 2004 at 1:09 am
Thanks Mike.
Why do you say I might end up with worse performance?
If IO is only done for pages then a 8k cluster would be best(?)
Although, having a 64k cluster would...
January 1, 2004 at 11:02 pm
quote:
Crispin -I don't have numbers to back this up. But I found better performance when I formatted my SAN with 64k...
December 30, 2003 at 10:38 am
Gabor, thanks for the info.
quote:
You can create a table having a larger row size as 8060 but you will have an error...
December 30, 2003 at 10:30 am
December 10, 2003 at 11:25 pm
Select Convert(Decimal(10, 2), 12.23653)
You can replace the number with the coulmn name.
Cheers,
Crispin
November 19, 2003 at 5:08 am
From a cost point of view, I would not roll out Enterprise edition to clients.
Have a look at MSDE which is on the Office 2000 CD.
This is a brokendown version...
November 19, 2003 at 1:06 am
-- Use the specifically named INDEX.
USE pubs
SELECT au_lname, au_fname, phone
FROM authors WITH (INDEX(aunmind))
WHERE au_lname = 'Smith'
See BOL: Select > Examples.
Why would you want to force it? Does the optimiser not...
November 18, 2003 at 11:06 am
Create Table Test (
Col1Varchar(200),
)
Go
Alter Table Test Add Col2 Varchar(200)
Go
See "ALTER TABLE" in BOL for more options. ie NULL, NOT NULL, DEFAULT etc etc
Cheers,
Crispin
Edited by - crappy on 11/18/2003 10:27:46...
November 18, 2003 at 10:27 am
November 17, 2003 at 10:16 pm
Not that I am aware of.
I am assuming you are calling the function from a proc.
Could you not insert the row into the table from within the proc, use the...
November 17, 2003 at 10:39 am
I sort of misread your post.
No, procs cannot be called from within a function.
Yes, functions can call functions.
Functions can call extended procs.
To get this to work, either copy the code...
November 16, 2003 at 10:35 pm
Viewing 15 posts - 541 through 555 (of 806 total)