Forum Replies Created

Viewing 15 posts - 3,196 through 3,210 (of 3,232 total)

  • RE: Stop/Start MS SQL Server Services

    How about this one?

    http://support.microsoft.com/default.aspx?scid=kb;en-us;325349

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: Improving parallel data access throughput

    It appears that the statement is attempting to minimize processor and I/O contention by taking advantage of multiple processor threads and disk spindles.  They are not mentioning that for this...

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: Cumulative Count

    create table #newtable (

     [Month] int,

     users int,

     Cumlative int)

    declare @count int, @users int, @key int

    SELECT @Count = 0, @users = 0, @key = 0

    SELECT @key = min(month) FROM <tablename>

    WHERE month > @key

    While...

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: client username - sql authentication

    Have you tried user_name(user_id()) ?  This works for me.  When logged in using SQL Server authentication, this returns my SQL Server user login name. 

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: Is there a need for real-time monitoring tools? Budget Time...

    I too came from the days of using Windows perfmon.  I know use Spotlight instead and I think it is well work the money.  Not only do you get basic...

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: WIN 2003 Permissions to start service

    The Microsoft KBase that Yelena posted outlines all of the permissions and rights that a non-administrator account needs to run SQL Server.  I know you said that the items from...

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: WIN 2003 Permissions to start service

    Kory,

    The BuiltIn/Administrators account within SQL Server exists so that a member of the Windows Administrators group can login to SQL Server.  It is not related to the Windows account...

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: Setting up Database Configuration at optimum level

    There is quite a few things to consider when initially sizine hardware for a database server.  Try this one for starters: http://www.sqlservercentral.com/columnists/bknight/sizingadatabase.asp

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: Trigger Help needed.

    You should not need to use a cursor.  Just do :

    'UPDATE <AuditTable>

    SET <audittable.column name> = inserted.<column>

    FROM <AuditTable>,Inserted

    WHERE <AuditTable Key> = Inserted.<Key>

     

     

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: Problem adding a foreign key relation

    It looks like you have duplicate records.  Are you checking existing data upon creation?  I assume that Order_ID is a unique, primary key on Orders?  How is OrderStatus keyed?

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: SQL 2000 operator email alerts

    This may help:

    http://support.microsoft.com/default.aspx?scid=kb;en-us;263556

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: Urgent! How to use exec result as part of select statement?

    You could declare a variable of whatever datatype spSystemSP would return, then assign that variable to the results of spSystemSP and include that variable in your select. 

    Example:

    declare @spResults int

    set...

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: Grouping

    So are you looking for the T-SQL syntax to initialy populate this new column?  I would write a case statement to check and see where all of your ag values...

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: Grouping

    I'm not really sure what you are asking for?  Are you looking at renaming the Ag column to Grp and converting the data over?  Or is Grp going to be...

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: Transaction log file

    SQL Server does not provide a tool to view the contents of the transaction log (that I am aware of).  There are third party tools that will do this for...

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

Viewing 15 posts - 3,196 through 3,210 (of 3,232 total)