Forum Replies Created

Viewing 15 posts - 1,711 through 1,725 (of 3,232 total)

  • RE: How To Install Sql Reporting Service

    It installs off of the same disk provided you select it as an option and you first have IIS installed on your machine.

    John Rowan

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

  • RE: Soundex-Like functionality

    What makes you think that the SoundExe value is derived from the CompanyName? What does the SoundExe values represent?

    John Rowan

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

  • RE: Soundex-Like functionality

    Uh, unless I don't quite understand your question, this is just a simple update statement.

    DECLARE @Commission_Soundex TABLE (

    [SoundID] [int] IDENTITY (1,...

    John Rowan

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

  • RE: Delete

    Yes, please do. I'd be interested in reading that if you find it.

    Thanks Lynn!

    John Rowan

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

  • RE: Most Recent Balance

    Why use a temp table and incur the overhead??

    create table a (clientid int, Unitbalance numeric(21,0),Dates datetime)

    set nocount on

    insert into a values (123, 999, '20080101')

    insert into a values (456, 888,...

    John Rowan

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

  • RE: Current SQL text

    Why not have the process that runs every 5 seconds (ouch) run by a sysadmin user and then simply grant read access to the table to the users that need...

    John Rowan

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

  • RE: Which is better

    These guys have you on the right track here. You definately don't need a cursor or loop to do this. If you need additional help with this, please...

    John Rowan

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

  • RE: Restore of 2005 mode 80 database

    Unless someone comes up with a fancy workaround, you should not be able to do this. Once you've restored or attached a SQL Server 2000 DB to a SQL...

    John Rowan

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

  • RE: Delete Rows from multiple tables

    How much of the total size of your DB do you expect to be removing? It is worth seconding Noel's post. You've stated that you have 2 GB...

    John Rowan

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

  • RE: Delete

    Also, your WHERE clause of PO.PODescription LIKE '%00000%' will normally produce a table scan. It's a bit hard to say for sure though as you have not posted an...

    John Rowan

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

  • RE: Perfomance tunning of SQL query which has Inner joins

    So you're asking for help tuning a query containing joins and you post a sample query with only the SELECT clause? How in the world are we supposed to...

    John Rowan

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

  • RE: The definition of object 'Trigger_Name' has changed since it was compiled.

    Are there any 'ALTER TABLE' statements within the triggers?

    John Rowan

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

  • RE: The definition of object 'Trigger_Name' has changed since it was compiled.

    Here's another: http://www.eggheadcafe.com/forumarchives/SQLServerprogramming/Jan2006/post26057430.asp

    John Rowan

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

  • RE: The definition of object 'Trigger_Name' has changed since it was compiled.

    What is your trigger doing?

    This may help http://forums.microsoft.com/TechNet/ShowPost.aspx?PostID=816590&SiteID=17&pageid=0

    John Rowan

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

  • RE: Improve my where loop!

    Second that.

    From your code, the main part is:

    *****************

    SELECT @PNo = min(PNo) FROM #PT

    WHERE PDone...

    John Rowan

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

Viewing 15 posts - 1,711 through 1,725 (of 3,232 total)