Forum Replies Created

Viewing 15 posts - 571 through 585 (of 790 total)

  • RE: Jonathan Kehayias: SQL Hero!

    I'm late here ...anyway Congratz Jonathan!

  • RE: No local server names available when connecting to database engine

    If you are sure that you install SSAS during the installation, be sure that your service is running at the SQL Server Configuration Manager!

  • RE: Database Snapshots in SQL Server 2005

    Do we have any possibilities to make snapshot just in particular objects not snapshot all DB!???

    Example is if I want to snapshot 3-4 tables every 15 min, then these results...

  • RE: SP for row count of tables

    it's sure that you can find many ways one above and this one for is the best:

    USE Your_Database;

    GO

    SELECT o.name AS "Table Name", i.rowcnt AS "Rows"

    FROM sysobjects o, sysindexes i

    WHERE...

  • RE: SP for row count of tables

    I'm not sure why do you want to run SP, till you can run this script and see some results anywhere in your DB, try it:

    SELECT o.name TableName ,i.rows TblRowCount

    FROM...

  • RE: Faster Deletes

    Do you have active constraints ... try to disable constraints and after that try deletion then enable constraints again !

  • RE: Faster Deletes

    Jeff Moden (11/18/2008)


    Dugi (11/18/2008)


    Try to truncate table

    TRUNCATE TABLE name_of_your_table

    couz the DELETE command is logged and every deleted action will recorded on log file and if you have million of records...

  • RE: Faster Deletes

    Try to truncate table

    TRUNCATE TABLE name_of_your_table

    couz the DELETE command is logged and every deleted action will recorded on log file and if you have million of records sure that you...

  • RE: Get Top Items by Group

    yes the row_number() combination with CTE works perfect to find the values as you want to show couz you have also other function like rank() dense_rank() Ntile()

    great post here,...

  • RE: Managing Transaction Logs

    Good stuff here about logs! Nice article Gail! 😎

  • RE: Linked Server

    Be more specific for your problem ...!?

  • RE: No backup of Master database!!

    homebrew01 (10/3/2008)


    I don't mean to sound like a wise-guy or anything. But why don't people back up their databases ?? How many posts have there been over...

  • RE: Question about row_number

    Profi solution and nice stuff here about this problem!

  • RE: COPYING TABLE FROM ONE DATABASE TO ANOTHER DB

    If the process is a routine maybe the best way is SSIS Package and run it whenever you want!

    😉

  • RE: SQL 2005 to SQL 2000

    GilaMonster (10/12/2008)


    The compatibility level just affects the parser and query processor and change the way that T-SQL is interpreted and what command are permitted.

    Ok I have experience from SQL Server...

Viewing 15 posts - 571 through 585 (of 790 total)