Forum Replies Created

Viewing 15 posts - 676 through 690 (of 789 total)

  • RE: Whats are the Advantages of Filegroups in Sql Server 2005

    zafar (7/31/2008)


    I am already using the schema's to group the tables domain wise,

    so what the filegroup does ??

    as someone said here that you will yous for the large database environment!

    :hehe:

    ============================================================
    SELECT YOUR PROBLEM FROM SSC.com WHERE PROBLEM DESCRIPTION =
    http://www.sqlservercentral.com/articles/Best+Practices/61537/[/url]

  • RE: Whats are the Advantages of Filegroups in Sql Server 2005

    the same post here

    http://www.sqlservercentral.com/Forums/Topic542536-146-1.aspx#bm542562

    plz mods merge it!

    ============================================================
    SELECT YOUR PROBLEM FROM SSC.com WHERE PROBLEM DESCRIPTION =
    http://www.sqlservercentral.com/articles/Best+Practices/61537/[/url]

  • RE: Filegroups in Sql Server 2005

    Maybe many of them... the first one is when you have the large database environment you will do some partition data in many data files so this partition is possible...

    ============================================================
    SELECT YOUR PROBLEM FROM SSC.com WHERE PROBLEM DESCRIPTION =
    http://www.sqlservercentral.com/articles/Best+Practices/61537/[/url]

  • RE: Problem with SQL Profiler

    :hehe: thnx for info!

    ============================================================
    SELECT YOUR PROBLEM FROM SSC.com WHERE PROBLEM DESCRIPTION =
    http://www.sqlservercentral.com/articles/Best+Practices/61537/[/url]

  • RE: Problem with SQL Profiler

    Grant Fritchey (7/29/2008)


    Honestly, try reinstalling.

    :hehe: I know ... this is the best solution ...just asking for any other alternative!

    ============================================================
    SELECT YOUR PROBLEM FROM SSC.com WHERE PROBLEM DESCRIPTION =
    http://www.sqlservercentral.com/articles/Best+Practices/61537/[/url]

  • RE: Pivot view date - SQL vs Oracle

    No, I do not have any results and I need Counting not Sum!

    I posted the code what can i do in SQL Server and it works very nice, but I...

    ============================================================
    SELECT YOUR PROBLEM FROM SSC.com WHERE PROBLEM DESCRIPTION =
    http://www.sqlservercentral.com/articles/Best+Practices/61537/[/url]

  • RE: Operations Manager and SQL Server

    Not bad ...:hehe:

    ============================================================
    SELECT YOUR PROBLEM FROM SSC.com WHERE PROBLEM DESCRIPTION =
    http://www.sqlservercentral.com/articles/Best+Practices/61537/[/url]

  • RE: Script to return Rows count from table using sp_ExecuteSQL

    It brings to me the NULL value !!!!!!!!!!!!??????????? :w00t::w00t::w00t::w00t:

    Another how to use it to see the results!

    😛 LOL

    ============================================================
    SELECT YOUR PROBLEM FROM SSC.com WHERE PROBLEM DESCRIPTION =
    http://www.sqlservercentral.com/articles/Best+Practices/61537/[/url]

  • RE: Get Missing Index info

    Hmmm it has incorrect syntax!

    ============================================================
    SELECT YOUR PROBLEM FROM SSC.com WHERE PROBLEM DESCRIPTION =
    http://www.sqlservercentral.com/articles/Best+Practices/61537/[/url]

  • RE: XML Index

    nice one also ... but not in article section ...it should be in Script Section !!!:w00t:

    ============================================================
    SELECT YOUR PROBLEM FROM SSC.com WHERE PROBLEM DESCRIPTION =
    http://www.sqlservercentral.com/articles/Best+Practices/61537/[/url]

  • RE: Table Partitioning in SQL Server 2005

    Nice one ... short explanation very good ...how about partition in many data files not just primary!

    :w00t:

    ============================================================
    SELECT YOUR PROBLEM FROM SSC.com WHERE PROBLEM DESCRIPTION =
    http://www.sqlservercentral.com/articles/Best+Practices/61537/[/url]

  • RE: Rows per Table

    There it is the code for the Tables and records ( without schema information)!

    SELECT o.name AS "Table Name", i.rowcnt AS "Row Count"

    FROM sysobjects o, sysindexes i

    WHERE i.id = o.id

    AND indid...

    ============================================================
    SELECT YOUR PROBLEM FROM SSC.com WHERE PROBLEM DESCRIPTION =
    http://www.sqlservercentral.com/articles/Best+Practices/61537/[/url]

  • RE: SQL Server Authentication problem(SQL server 2005)

    sreevani.chireddy what is you problem with too many posts triple posts ????

    :w00t:

    ============================================================
    SELECT YOUR PROBLEM FROM SSC.com WHERE PROBLEM DESCRIPTION =
    http://www.sqlservercentral.com/articles/Best+Practices/61537/[/url]

  • RE: Deleting data in tables

    ...ok I test right now with the TRUNCATE ( I forget it at my first post )

    CREATE PROCEDURE USP_BOOM_DATA

    AS

    TRUNCATE TABLE TABLE_NAME1

    .

    .

    .

    .

    TRUNCATE TABLE TABLE_NAME100

    then

    EXEC USP_BOOM_DATA

    that's it!!!

    But I'm sure that you can...

    ============================================================
    SELECT YOUR PROBLEM FROM SSC.com WHERE PROBLEM DESCRIPTION =
    http://www.sqlservercentral.com/articles/Best+Practices/61537/[/url]

  • RE: Deleting data in tables

    ...And also shrinking DB after these operation is very wellcome if you use DELETE CLAUSE but you can use also TRUNCATE TABLE TABLE_NAME1..100

    TRUNCATE is faster than DELETE

    ============================================================
    SELECT YOUR PROBLEM FROM SSC.com WHERE PROBLEM DESCRIPTION =
    http://www.sqlservercentral.com/articles/Best+Practices/61537/[/url]

Viewing 15 posts - 676 through 690 (of 789 total)