Forum Replies Created

Viewing 15 posts - 54,796 through 54,810 (of 59,067 total)

  • RE: Data in Use or Data in memory

    It was removed because it was a really bad idea...;)

    Like I said, stop trying to decrypt the whole table... encrypt the lookup criteria and do a normal join or WHERE...

  • RE: Remove Decimals Without Rounding

    Why do you think you need the extra overhead of RTRIM/LTRIM when converting Decimal to Varchar?

  • RE: Reading Variable Flat File

    Heh... why sure, Remi... just look at the difficulties Steve is having trying to fix some of the problems with this "forum in a can" code that RedGate bought. ...

  • RE: Is this workable

    Sure... somehow they managed to save trailing spaces in NVARCHAR columns... Use DATALENGTH to check... some of the columns are defined as 100 characters wide... and even if they only...

  • RE: Tempdb Contention

    GilaMonster (9/29/2007)


    TempDB has a DBID of 2, always.

    Teaching how to fish... 😉

  • RE: Tempdb Contention

    noeld (9/28/2007)


    ... Running sp_HelpDB will allow you to figure out the DBID ...

    select db_name(dbid)

    Cheers,

    Heh... yeah... that'll work if you know the DBID... won't help you find the DBID for...

  • RE: Update Trigger Updates Correct Record In Another Table

    Ninja's_RGR'us (9/29/2007)


    Just one question on that Jeff. How do you track the information of When, what, who inserted the original row?

    I know this data should be kept separate from...

  • RE: Update Trigger Updates Correct Record In Another Table

    Phil Factor (9/11/2007)


    is a popular introductory article on the technique

    Well, I'll be damned... Now I know who to blame... 😀 (NOT Phil... Pop Rivet!)

    I've had a bit...

  • RE: Limit Resources to UGLY query

    Hi Bob...

    Just confirming... how many rows does the following update?

    4) The _Change fields would be the difference between the day before and the current day for the specific type. This...

  • RE: Unique ID for a View

    In that article, the part that would work for a view looks like this...

    SELECT emp_id, lname, fname, job_id,

    (SELECT COUNT(*) FROM employee e2 WHERE e2.emp_id <= e.emp_id AND e2.job_id =...

  • RE: Adding a row count record at the bottom of a table

    Max (9/27/2007)


    Jeff,

    I am using the Export Wizard.

    Thanks

    Don't know much about that in 2k5 and I usually don't use DTS in 2k.

    One of the "problems" (and, advantages) of RDBMS's, is that...

  • RE: DEAD LOCK

    Webrunner...

    Gail has it right.

    I'm always curious about deletes though... why are you deleting instead of just "end dating" or deactivating? Seems like you're losing some history...

  • RE: Is this workable

    You mean the same ones that RPAD in SysProcesses? 😀

  • RE: HELP WITH AUTOGENERATED INSERT

    Why don't you just make a linked server betweeen the two environments and do the insert from the linked server?

  • RE: Data in Use or Data in memory

    Don't try to decrypt the whole table... encrypt the data you're searching for instead. Don't forget to add an index.

Viewing 15 posts - 54,796 through 54,810 (of 59,067 total)