Forum Replies Created

Viewing 15 posts - 20,941 through 20,955 (of 26,484 total)

  • RE: How Can I stop SQL Server Service from a job??

    Jeremy Brown (5/18/2009)


    Not to belabor the point but I think the OP stated that the requirement is to stop sql server by his management. As much as I agree...

  • RE: Question with variables

    FelixG (5/18/2009)


    declare @cargo int

    set @cargo = 5

    Select distributorid, distributorname, distributorstatus,distributorcargo

    from Dist_Main M inner join Dist_Details D on

    M.DistPK = D.DistFK

    where distribuborcargo = @cargo

    and distributorstatus in ('9', '7','5','1')

    You should consider the use...

  • RE: Question with variables

    There may be other alternatives, but the only two I can think of are to create a temorary (dynamic) table and join to it in the FROM clause or create...

  • RE: SQL 2000 JOB

    that is where i also start when a job fails.

  • RE: displaying a meaningful name instead of a URL in a report.

    Please don't double post. Please reply on the this thread.

  • RE: Trigger Help

    Since an INSTEAD OF INSERT trigger fires prior to the actual INSERT, I'd actually vote for Gus's solution, but I also agree with him on the testing in a development...

  • RE: Trigger Help

    Not only that, but you are trying to insert records that have already been "inserted" into the table. I agree with Luke. You need to extend your primary...

  • RE: SQL BACKUP JOB Failure

    I agree with Steve. Also, I'd run separate backup processes for each database.

  • RE: please give a recursive query for my problem..

    The only two things missing from the above is your expected results and the code you have developed so far. Sorry, but the graph and your verbal description just...

  • RE: change where clause

    John Marsh (5/17/2009)


    Hello Sam,

    Generally speaking it is preferable to filter records at the Server, particularly in order to reduce Network Traffic.

    A slight alternative to Lynn Pettis’s suggestion would be to...

  • RE: please give a recursive query for my problem..

    As this is an assignment, I'd like to suggest that you show us what you have done so far to try and solve your problem. From there we can...

  • RE: Triggers and performance

    At this point I am going to chime in and suggest that you read the first article I reference below in my signature block and the following blog, The Flip...

  • RE: why i can't shrink tempdb data file

    Unless you are experiencing disk space issues on the disk where tempdb resides, I'd leave it alone. It grew to whatever size it is for a reason. If...

  • RE: Maximum instances supported by SQL Server 2008

    I have to agree, the wording of the question is questionable.

    Directly from the source sighted in the answer to the question:

    50 instances on a stand-alone server for all SQL Server...

  • RE: change where clause

    smknox (5/17/2009)


    It seems like my simplest option might be to pull lots of records over the network (one sp without a where clause) and then filter out what I want...

Viewing 15 posts - 20,941 through 20,955 (of 26,484 total)