Forum Replies Created

Viewing 8 posts - 31 through 38 (of 38 total)

  • RE: history for stored procedures

    you can use version control tools like MS Visual Source Safe,

    ClearCase ...

    it is not a better advice to write a DDL Trigger on Production Server.

    please correct me if i am...

  • RE: SQL Server 2005 Case Sensitivity

    i mean to say comparing with SQL 2000

    selecting serverproparty('collation') will return defaulr SQL_Latin1_General_CP1_CI_AS (if i am not wrong).

    but As 2005 introduce Schema feature which becomes

    Case-Sensitive combination of schema and tablename.

    which...

  • RE: SQL Server 2005 Case Sensitivity

    Thanks for reply chirag.

    I have used the word "default" in the question.

    Regards

    Manoj

  • RE: How to find total size of all databases

    Hadrian,

    alternate way is..

    create table #tbsize (dbname sysname, dbsize dec(15))

    declare @b-2 numeric(12,2) select @b-2 = low from master.dbo.spt_values where number = 1 and type =...

  • RE: How can i reduce Initial Size Database File ?

    TRy This Commands:

    DBCC shrinkfile (filename, expected size in MB , notruncate)

    After Executing Above Next Step:

    DBCC shrinkfile(filename, expected size in MB , truncateonly)

    Hope your problem will solve.

    regards

    Manoj

  • RE: SQL Server 2005 SP3

    i think we should have SP3 before release of 2008.

    Regards

    Manoj

  • RE: create table from views

    SELECT * INTO New_Table_Name From Old_Table(View) will definately work properly over here.

    Regards

    Manoj

  • RE: Clearing LOD file (126 GB)

    your log size is in GB while Data file size is in MB, it seems you are not taking backup of log.

    if log backup is not necessry for you then...

Viewing 8 posts - 31 through 38 (of 38 total)