Forum Replies Created

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

  • RE: Question of the Day for 03 Sep 2004

    Database objects include all tables, views, stored procedures, extended stored procedures, triggers, rules, defaults, and constraints. The sum of the number of all these...

  • RE: Clearing and reducing transaction Log

    Use this script in query analyser on the database where you want to shrink your transaction log.

    Change the @databasename to your database name

    declare @fileid as int

    declare @databasename as nvarchar(500)

    set @databasename='MyDatabaseNAME'

    Select...

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