Forum Replies Created

Viewing 15 posts - 406 through 420 (of 709 total)

  • RE: Touchy Subject...

    Also note that a company that will ignore software laws in order to save money, because they can get away with it, may just as willfully ignore labor laws to...

    Eddie Wuerch
    MCM: SQL

  • RE: Summarise multiple columns to a single results Column - Are there better ways than this? (Fx Trade Amounts to Exposures)

    One trick is to hit the table twice: the first pass selects the 'buy' columns and aliases their names to simply Curr and Amt, and the second pass select the...

    Eddie Wuerch
    MCM: SQL

  • RE: How to compile the stored procedure while creating

    SET NOEXEC ON

    After that, you can execute you procedure. The procedure will compile (and perform the object and syntax checks you seek), but will not execute.

    If you wish...

    Eddie Wuerch
    MCM: SQL

  • RE: Deleting Large Tables

    johnsonchase7 (11/6/2009)


    <snip> Especially since the dbcc index defrag option is no longer supported in the sql server 2008.</snip>

    Note that it's just the dbcc index defrag syntax that has been removed....

    Eddie Wuerch
    MCM: SQL

  • RE: CXPACKET too high

    Changing MAXDOP only makes the CXPACKET waits go away, but doesn't cure the problem. You'll get some cycles back from not having to assemble the streams, but the bottom...

    Eddie Wuerch
    MCM: SQL

  • RE: SQL Licensing - what constitutes a CAL?

    Note: see link at bottom of post.

    There are two types of CALs: Machine and User.

    A Device CAL licenses a single workstation/phone/etc. from which multiple users may interactively log in and...

    Eddie Wuerch
    MCM: SQL

  • RE: SQL 2008 x64 clustering active / active

    You may only install one default instance of SQL Server on a server.

    For clustering to work, you must install an instance on every node (server) in the cluster...

    Eddie Wuerch
    MCM: SQL

  • RE: SAN v SQL Server backups

    Fraggle-805517 (10/2/2009)


    Eddie,

    By chance is this documented somewhere so I can read more on it, or is this just from your personal experience.

    I just threw that together as an answer to...

    Eddie Wuerch
    MCM: SQL

  • RE: SAN v SQL Server backups

    The key is the ability to recover to a specific point in time (mentioned above), and not just they time they took the 'SAN backup' (only relevant if you are...

    Eddie Wuerch
    MCM: SQL

  • RE: equivalent for rownum

    This info rocks! Awesome!

    Eddie Wuerch
    MCM: SQL

  • RE: Cannot Conect, Microsoft sql Server 2005, Error 18456

    The link I provided explains type 8 and 11 as follows:

    Type 8: password mismatch (you typed the wrong password)

    Type 11: Valid login but server access failure

    - This one is...

    Eddie Wuerch
    MCM: SQL

  • RE: Cannot Conect, Microsoft sql Server 2005, Error 18456

    If you're getting error 18456, then you're successfully connecting to the server, but the login is being denied.

    To find details, view the SQL Server logs (I'm guessing SQL Server is...

    Eddie Wuerch
    MCM: SQL

  • RE: Nonclustered Index, NULL values!!

    Clustered indexes and Primary Keys are two independant entities. It just turns out that most people build their primary keys also as clustered indexes, even when their queries would...

    Eddie Wuerch
    MCM: SQL

  • RE: How To Identify Tables That Are Not Empty?

    I use the following script to pull a list of tables and space used. Add a HAVING clause to only return those tables with > 0 rows, and it...

    Eddie Wuerch
    MCM: SQL

  • RE: Test a SQL statement without executing it?

    SET NOEXEC ON

    That will compile but not execute.

    1. SET NOEXEC ON

    2. Execute the code

    3. SET NOEXEC OFF

    ...and react to any errors.

    -Eddie

    Eddie Wuerch
    MCM: SQL

Viewing 15 posts - 406 through 420 (of 709 total)