Forum Replies Created

Viewing 15 posts - 57,616 through 57,630 (of 59,048 total)

  • RE: Creating text files for each row of the ouput

    Can you post some sample data, hopefully in the form of INSERT statements, along with the CREATE statement for the table you're trying to get the data from, please?

  • RE: Archiving to history without creating duplicate rows

    I wouldn't say "never"... they're pretty handy when making a temp table and, since no one but the current session can use the temp table, there's no concurrency issue to...

  • RE: Must delare the variable?

    Heh, heh.... mine are getting worse... old brain.

    You hit the nail on the head about the scope thing... I was curious as to why you declared the variable external to...

  • RE: Data from Previous Row

    Off the beaten path a bit, Serqiy, but what happened to your number of posts?  You were way up there and now you have less than 1000?  What'd they do? Reset...

  • RE: Using MAX in an UPDATE

    As usual, Remi did it absolutely correct in the first reply above...

  • RE: Using MAX in an UPDATE

    Ohhh no, no, no... we ran into that little jem... "death by SQL"...  pegged 4 cpus for two hours to do a lousy 2 minute update...  THAT was repeatable with...

  • RE: Weird SQL Server problem

    Dollars to donuts says that someone change the privs on a folder or deleted a user with the privs... did you do a search for the DLL to find out...

  • RE: Blocking on a heavily updated table

    If you have a clustered index, change it to a non-clustered index.  That'll help a highly transactional table a bit, as well, especially if you have a lot of inserts...

  • RE: Font size in Enterprise Manger .. SQL Server 2000

    I found an alternative in XP... right click on the desktop, select [Properties], select the [Appearance] tab, and change the [Font Size] setting to LARGE or EXTRA LARGE.

  • RE: Font size in Enterprise Manger .. SQL Server 2000

    I'm afraid that's it... if you want to change the font "size" in EM, I believe you are going to have to change the screen resolution (right click on the...

  • RE: Simple query for ms sql server 2000

    Despite the fact that it recompiles every time it is used, I've found nothing faster than the following especially since page size and page number can be parameterized in a...

  • RE: Must delare the variable?

    SwTrans,

    I guess I don't see what your problem is or what you're actually trying to do... why wouldn't the following work for you?

    DECLARE @UseIt1 as varchar(100)

    DECLARE @WorkQueue AS VARCHAR(100)

    SET @WorkQueue...

  • RE: Must delare the variable?

    Sushila,

    You're having one of those days like I did on the trigger thing...

    DECLARE @UseIt1 as varchar(100)

    EXEC ('SET ' + @UseIt1 +...

  • RE: SQL is burping

    Whew!  The number 6 would have really messed me up... I only have 5 fingers on each hand!

  • RE: Archiving to history without creating duplicate rows

    Yep... and keep in mind that SELECT/INTO only works once on any given target table unless you drop the table... but that would defeat the archive, eh

Viewing 15 posts - 57,616 through 57,630 (of 59,048 total)