Forum Replies Created

Viewing 15 posts - 466 through 480 (of 709 total)

  • RE: Partitioned Tables in SQL Server 2005

    You have a couple options to take an existing non-partitioned table and convert it to an partitioned table.

    Hint: see BOL, Look for: "partitioned tables [SQL Server], modifying" in the index....

    Eddie Wuerch
    MCM: SQL

  • RE: MCITP

    Re: not getting 2005 certs waiting for 2008 certs.

    From what I've seen on SQL 2008 so far, it's basically SQL 2005 plus more new stuff. (I'm just...

    Eddie Wuerch
    MCM: SQL

  • RE: SQL Server Management Studio (No Results Beep)

    Tools -> Options... -> Click 'Query Results' -> in the right pane, check 'Play the Windows default beep when a query batch completes'

    Eddie Wuerch
    MCM: SQL

  • RE: Column with identity property

    SELECT OBJECT_NAME(object_id) AS TableName, name AS ColumnName

    FROM sys.columns

    WHERE object_id = OBJECT_ID('YourTableNameGoesHere') AND is_identity = 1

    Eddie Wuerch
    MCM: SQL

  • RE: SQL Server Caching

    dots67 (10/18/2007)


    Results can not be cached as underlying data changes

    Regarding data (buffer cache) you can not control what is cached (the minor exception is PINTABLE)

    PINTABLE is ignored in SQL Server...

    Eddie Wuerch
    MCM: SQL

  • RE: Advice for a newbie

    Central Indiana (I live and work in Indy) is actually pretty fertile ground for SQL Server DBAs. Many places don't post ads on Monster because (and I've been through...

    Eddie Wuerch
    MCM: SQL

  • RE: Performance Tuning Check List

    Tracing should be used to identify specific reasons for specific problems. It comes later in the tuning process. You first need to answer the questions "Is there a...

    Eddie Wuerch
    MCM: SQL

  • RE: Retriving username ,who is executing the query

    SELECT login_name FROM sys.dm_exec_sessions WHERE session_id = @@spid

    Check BOL for both sys.dm_exec_sessions and sys.dm_exec_requests to see what other useful info is available. (host_name, etc.)

    -Eddie

    Eddie Wuerch
    MCM: SQL

  • RE: backing up a mirrored SQL 2005 database

    Just script your backup with T-SQL and set up an agent job on each server to execute that script. The first step in the script can check if the...

    Eddie Wuerch
    MCM: SQL

  • RE: 3 Active and 1 Passive SQL Clustering Scenario.

    We use the PolyServe Matrix Server Database Utility for SQL Server to run 2 distinct 5+1 'clusters'.

    http://www.polyserve.com/sql_server_consolidation.php

    They push it as useful for consolidation, we went with it to get rid...

    Eddie Wuerch
    MCM: SQL

  • RE: Virtual Server Name in SQL Server 2005 Cluster

    The virtual SQL Server has a different IP address from the cluster itself. Network names, such as SQLET01, are resolved into IP addresses through DNS. A single network...

    Eddie Wuerch
    MCM: SQL

  • RE: Average of all valued Rows in a column

    Using windowed aggregates (using the OVER clause) avoid the messy join-back stuff:

    SELECT n.caption, AVG(b.availability) AS Availability, AVG(AVG(b.availability)) OVER () AS 'Average of Availability'

    FROM nodes n INNER JOIN

    ...

    Eddie Wuerch
    MCM: SQL

  • RE: Optimizing SQL System Stored Procedures - What's in a SELECT?

    DevTeamLead (10/5/2007)


    Hoping this trickles back to the lair of the Architect...

    One of the most disparaging things I run across in SQL code is the use of;

    SELECT *

    [...]

    -Microsoft promises to deprecate...

    Eddie Wuerch
    MCM: SQL

  • RE: Microsoft SQL Server 2005 Performance Tuning

    There's a lot of info in that book that is related to tuning hardware and windows server monitoring, which is valid info regardless of the version of SQL Server. ...

    Eddie Wuerch
    MCM: SQL

  • RE: SQL Server 2005 Clustering

    From http://www.microsoft.com/sql/editions/enterprise/comparison.mspx

    High Availability “Always On” Comparison

    SQL Server 2005 Standard Edition

    Failover clustering

    Two-node only

    SQL Server 2005 Enterprise Edition

    Failover clustering

    Up to 9 nodes

    -Eddie

    Eddie Wuerch
    MCM: SQL

Viewing 15 posts - 466 through 480 (of 709 total)