Forum Replies Created

Viewing 15 posts - 3,061 through 3,075 (of 7,429 total)

  • RE: Connecting from Crystal Reports

    Build the SQL String using the SP name and all parameters then put where you normally insert the Query string in the code. Works just fine.

  • RE: Making a column uneditable

    Thanks Brain, had not seen that before.

  • RE: Running SQL Server 6.5 & 2000 on same server

    Yes, I have not done this myself but do recall the big issue is you have to keep 6.5's client tools installed to access it with it's version of EM....

  • RE: Isolation Levels

    We discussed this not long ago in another thread and ultimately this was the solution we agreed probably gave the best performance and locked the row long enough itself to...

  • RE: Finding jobid from sysprocesses table.

    Look at sp_help_job in BOL you can look for a job with a specific @execution_status. This should help.

  • RE: possible to have variable cursor name?

    You could try to write wrapped in Dynamic SQL. Otherwise it goes out of scope and cannot be done at all.

  • RE: alerts

    This si one of the builtin Demo Alerts MS ships SQL with. Most people remove it. The name is Demo: Sev. 25 Errors which is short for Serverity 25...

  • RE: Add to Alpha Values

    Andy meant

    char(ascii(right(colname,1))+1)

    he just typoed.

  • RE: Trick for creating a table of consecutive nbrs?

    Here is another possibility I find usefull soemtimes. I have seen another way to do this once which was even cooler but off hand I don't remember it.

    --Build a table...

  • RE: Making a column uneditable

    I also use UPDATE triggers to prevent this for safety, you can determine which coolumn is being updated and if the one in question force a rollback and the data...

  • RE: NULLs' effect on Indexes

    I will try to remember but me and another programmer got into a conversation about this a few months back (we both work with C). When the 16bit processor was...

  • RE: NULLs' effect on Indexes

    I have seen no such issue myself. However many don'ts are holdovers from the 16Bit processor days, 32bit processors made considerable leaps in the world of data comparison. In fact...

  • RE: Simple Query Help

    There are several ways you can do this. Building on 5409045121009's setup here is another with a bit less subquerying.

    SELECT
    
    a.GroupID,
    a.TaskID
    FROM
    Test a
    INNER JOIN
    (SELECT iq.GroupID, Min(iq.Created) AS...
  • RE: Verity Accrue Index Search >> SQL Server 2000

    You can similar performance using Microsoft Full Text Indexing, see BOL topic "CONTAINS" for more info. However, I do believe Verity also makes the same exact app for SQL Server...

  • RE: How about this for a contest.

    Get an MSDE copy, and install the SQL tools from SQL 2K eval edition. Anyway, I have a major task ahead of me building a database to handle call routing...

Viewing 15 posts - 3,061 through 3,075 (of 7,429 total)