Viewing 15 posts - 46 through 60 (of 141 total)
Yeah, you don't really need this much. I just made the design flexible for future use.
Also, the script will readily work for him...
December 20, 2006 at 7:47 pm
Declare @ColumnName varchar(128), @sql varchar(8000)
, @NonNULLColumns varchar(1000)
Set @NonNULLColumns = ''
Set @sql = ''
select Column_name INTO #NonNullColumnNames
from information_schema.columns
where 1=2
Declare ColumnNamesCursor CURSOR FOR
select distinct Column_Name from information_schema.columns
where table_name...
December 20, 2006 at 5:14 pm
You'd have to loop thru all the columns and perform an aggregaite check.
I'll post back in awhile.
December 20, 2006 at 4:01 pm
Got up to 600K! Like how many times did those guys try?!? Hahaha!
December 20, 2006 at 2:34 pm
Hahaha! I counted the digits as Sushila said. It has seven digits!
December 20, 2006 at 2:18 pm
Hihihi!
Got up to 400k on it! Haven't seen it reflected on the scoreboard though.
Merry Christmas! Cheers!
December 20, 2006 at 2:13 pm
I do not have the means to mimic an installation but I assume you are looking at the Collation Settings dialogue box where you chose to either use windows collation...
December 19, 2006 at 10:10 pm
Actually, the collation is simply US. English but put in a more unique ID way.
Do you need to have the exact collation setting in the server installation? Or you...
December 19, 2006 at 7:28 pm
Do you have 1300 SQL 2K Servers or do you have 1300 clients connecting to a single server?
Is it a single application using the sa account? Why would you...
December 19, 2006 at 6:46 pm
This is very subjective. You need to consider the size of your db, the movement of data, the number of users, the number of concurrent connection, and a lot more.
In...
December 19, 2006 at 6:38 pm
Which part are you at? What do you see? What are the possible values?
December 19, 2006 at 6:35 pm
Right-click your db in EM and choose properties. In the Options tab, Under Settings, CHECK the Auto Srink option.
This will automatically shrink the database leaving it with 25% free space.
If...
December 19, 2006 at 6:33 pm
Hey, aren't we making this a year end tradition???
December 19, 2006 at 5:16 pm
Choos Dictionary Order and accent-sensitive ONLY.
December 19, 2006 at 5:04 pm
This is a fairly small database. You DO NOT NEED A FILEGROUP. You only need the filegroup if you explicitly want a particular table on the other file. In your...
December 19, 2006 at 4:44 pm
Viewing 15 posts - 46 through 60 (of 141 total)