Forum Replies Created

Viewing 4 posts - 1 through 4 (of 4 total)

  • RE: Need help with this query

    Sorry guys for the trouble ... just figured out some crazy method :hehe:

    UPDATEtvLRF

    SETHasMultiple = 1

    FROM@tv_LicenseRenewalFee tvLRF

    INNER JOIN (SELECTGroupCode, MIN(SUBSTRING(ClassificationCode,3, LEN(ClassificationCode))) AS Number

    FROM@tv_LicenseRenewalFee

    WHEREGroupCode <> (

    SELECTGroupCode

    FROM@tv_LicenseRenewalFee

    WHEREHasMultiple = 1

    )

    GROUP BY GroupCode

    HAVING COUNT(GroupCode)...

  • RE: How to export FLATFILE in DB_COLUMN

    use BULKINSERT

  • RE: Formatting and Readability

    Totally Agree..

    I too had some hard time understanding the code.. in the mean while cursing the person who developed it so ....... ha ha

  • RE: SQL Profiler

    use this command to shrink the temp db

    select * from sysfiles

    -- use this to get the temp log file name

    backup log tempdb with truncate_only

    dbcc shrinkfile (templog, 20)

    so do this instead...

Viewing 4 posts - 1 through 4 (of 4 total)