Forum Replies Created

Viewing 3 posts - 1 through 3 (of 3 total)

  • RE: Resource Governor CLASSIFIER_FUNCTION

    CREATE FUNCTION [dbo].[LAFclassifier] ()

    RETURNS SYSNAME WITH SCHEMABINDING

    AS

    BEGIN

    DECLARE @GroupName SYSNAME;

    SET @GroupName = 'default';

    IF IS_MEMBER ( 'ACCOUNTING\SQLAdministrators' ) = 1

    SET @GroupName =...

  • RE: Are You a Ten?

    The best DBA is the one who can goolge the fastest.

  • RE: Clustered indexes

    The individual rows in a page at the leaf level of a clustered index are stored by the clustering key; hence, the physical order is at the page level. ...

Viewing 3 posts - 1 through 3 (of 3 total)