Forum Replies Created

Viewing 15 posts - 2,191 through 2,205 (of 3,232 total)

  • RE: Multiple update triggers produce error

    You either need to combine the logic into one single trigger, or use the IF UPDATE() logic within your triggers.  What is happening here is that your triggers are recursively...

    John Rowan

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

  • RE: Stored procedure problem URGENT

    Either run SET QUOTED_IDENTIFIER OFF and re-create your SP, or change your REPLACE statement to look like this:

    replace(c.coursetitle, char(39), (char(39) + char(39)))

    John Rowan

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

  • RE: Stored procedure problem URGENT

    What happens if you run the SELECT portion of the SP manually through Query Analyzer?

    John Rowan

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

  • RE: Identifying gaps in numbering sequence of a table

    http://www.sqlservercentral.com/columnists/gsmilevski/anefficientsetbasedsolutionforislandsandgaps.asp

    John Rowan

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

  • RE: Help me in avoid IO delays!!!

    I think we need more info here.  How do you know it is even I/O delays?  It could be due to prolonged blocking from long transactions or poorly written queries. ...

    John Rowan

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

  • RE: Simple Insert Issue

    How many rows are in your Design_Details table? Is you rFK column in the Design_Details table indexed? 

    John Rowan

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

  • RE: Simple Insert Issue

    How many rows are in your table?  Can you post your table and index DDL?

    John Rowan

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

  • RE: Delete from table_name

    David's advice is good.  I would start by checking the Archive bit for index first.  My guess is that this column is not indexed and as David said, SQL Server...

    John Rowan

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

  • RE: Help !! Performance Issue!

    Just to expand on what Steve has said, separate LUNs do not always mean separate physical disks.  Many SAN administrators don't understand that a database server requires separation at...

    John Rowan

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

  • RE: Complicated Query

    Brian's function should work here.  Here's an example of how ( I tweaked his original to include a join on the ItemNum column and to use my example data column...

    John Rowan

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

  • RE: Place wildcard holder either side of an input parameter?

    Keep in mind that if the SomeColumnName LIKE '%' + @ParameterName + '%' is the only criteria in your where clause, this will result in a table scan.

    John Rowan

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

  • RE: BCP vs DTS

    Ali,

    Go to the forums main page: http://www.sqlservercentral.com/forums/default.aspx.  Select the forum that you with to post in.  You will then see a 'New Thread' button on the upper left...

    John Rowan

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

  • RE: How to optimize a query containing a join of two views ?

    Yes, table, view, and index DDL will help.  Also, you say there are no parameterized queries in SQL Server.  What do you mean by that?  Of course you can use...

    John Rowan

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

  • RE: Advantage to creating an Index when searching for NULLs?

    Your best bet here really is to run a test of your own as Sergiy and Vladan have stated.  While you may find sources that say that it may or...

    John Rowan

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

  • RE: What was the process deadlocked with?

    Yes.  If SQL Server encounters a deadlock, the detailed info. will get written to the log file. 

    John Rowan

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

Viewing 15 posts - 2,191 through 2,205 (of 3,232 total)