Viewing 7 posts - 1 through 7 (of 7 total)
Guys,
As usual - the amount of difficulty never disappears...
Surrogate keys are excellent for Referential Integrity - small PK / FK.
The default of having PK as a clustering one is a...
October 26, 2010 at 5:11 pm
Guys,
The subject in discussion is not practical in an application development domain for obvious reasons.
From the perspective of DBA/Consultant I can imagine (HARDLY) that sometimes it would be interesting /...
October 29, 2009 at 7:28 pm
Stats? I think it would be a good practice to update stats every so often. This is outside the scope of moving indexes... Mmmm?
September 16, 2008 at 4:46 pm
The complete version for SQL2005/2008 is below. It includes schema... plenty of monkeys use multiple schemas..
Enjoy.
SET NOCOUNT ON
DECLARE
@table_schema_name nvarchar(128),
@table_name nvarchar(128),
@index_name nvarchar(128),
@key_ordinal smallint,
@column_name nvarchar(128),
@sort_order varchar(50),
@is_included_column int,
@index_type_desc varchar(50),
@unique_type varchar(50),
@ignore_dup_key varchar(50),
@fill_factor tinyint,
@is_padded varchar(50),
@allow_row_locks...
September 15, 2008 at 11:13 pm
Guys,
BI implies presense of both - business AND intelligence...
Decision Support Systems - BI in new speak - is as old a concept as computerised data itself. There are plenty of...
June 23, 2006 at 9:05 am
Conceptually, databases are to store and retrieve data - that what they do best.
Having "ability" doesn't mean you have to use it. As a DBA and developer, I strongly discourage...
October 30, 2005 at 3:31 pm
Viewing 7 posts - 1 through 7 (of 7 total)