Forum Replies Created

Viewing 15 posts - 57,361 through 57,375 (of 59,049 total)

  • RE: replace() question

    There's probably a dozen ways... here's a couple without UDF or Tally table...

    declare @table table (ad_str1 varchar(50))

    insert @table

    select 'apple avenue w' union all

    select 'melon road e' union all

    select...

  • RE: Minimum values

    Junkie,

    Would you post the query that creates the example output that you posted?  I think that's probably the key, here.

  • RE: Locking up on Trigger call

    Nicasio,

    In order for the EXE to release it's grip, it must close connections, destroy the connections, AND successfully exit the command processor window you've invoked.  When you run it as...

  • RE: output from stored procedure containing min function.

    What ever you make with a permanent table, should also work with a temp table except FK constraints.

  • RE: output from stored procedure containing min function.

    Actually, Martin gave you the previous answer... but thank you, anyway.

    I've not had the time to "play" with it, but you are missing a column alias in your stored procedure which...

  • RE: Mind Your Manners

    Absolutely outstanding article, Sushila... Your fine article should be the one that is required reading, not only for the "newbies", but for many of us old hacks as a reminder...

  • RE: Two Users Pulling Same Account Problem

    Long term transactions will cause huge wait periods and, possibly, deadlocks.  I like Sreejith's method and have used it before... we used a column called "IsDirty" and it contained the...

  • RE: Error handling in triggers

    quoteI am running a stored procedure that uses a cursor (I know, I know, I couldn't find a...
  • RE: output from stored procedure containing min function.

    The way you have it written, you are trying to insert into a temp table and variables at the same time.  If you want to do both, you will need...

  • RE: Diagrams....

    Be aware that when you change a diagram and save it, it actually updates your database to match... diagrams are really a form of somewhat anorexic data models.

  • RE: Remote connection from within Stored Proc.

    Another possibility would be to use a "Linked Server" which would also hide the login and password from prying eyes.

  • RE: how to select different from different tables

    That's a good start... got any data we can play with and, like I asked, are the tests stored in the same table as the quizzes?  If so, what marks...

  • RE: how to select different from different tables

    Where is the Test info stored?  In the QuizLog?

    Sidebar... does you table actually have columns with spaces in the names ?

    I think it...

  • RE: best possibilities

    It sounds like the classic "make change" problem that used to be taught in many programming classes... I'm on my way to work right now but I think a function...

  • RE: Sql 2000 DTS timeout?

    Perfect case of too many cooks spoiling the broth Thanks for the feed back on what you found, Ville... definitely something to keep...

Viewing 15 posts - 57,361 through 57,375 (of 59,049 total)