Forum Replies Created

Viewing 15 posts - 2,116 through 2,130 (of 2,469 total)

  • RE: Chinese characters (double byte)

    Yes Remi - the keyword is "sometimes"....

  • RE: getting where clause for views

    I'm not sure I understand the question - you have a view V1 where A1 > 10 and A2 > 23......

    If you want a where A1 = something...can you not...

  • RE: Chinese characters (double byte)

    Read up on "Collations" on BOL - it should be a good starting point and gives you detailed information!

  • RE: PUBS database

    Specially when you're brand new to SQL Server and learning the ropes....even otherwise, they can come in quite handy!

    Frank - have you "withdrawn" so Remi can catch up with you...

  • RE: How to debug a SP in Client/Server

    I usually just set a breakpoint where the sp is being called (vb 6) and take all the parameter values and run it in QA...works quickest and easiest for me!!!

  • RE: Changing Object Ownership

    Excellent except when it's downright useless...here's the example I was looking for from BOL -

    "Show first level dependency only" - BOL says it means...

    "View only first-level dependencies for the...

  • RE: Changing Object Ownership

    Look up sp_changedbowner first and then sp_revokedbaccess - BOL explains this and you can finetune this to suit your needs!

  • RE: Row duplicates

    what about a select distinct * into a temp table, dropping the dupe table and then renaming the temp to original name ?!

  • RE: Renaming tables in Enterprise Manager

    that makes sense - tscott mentioned tables so I only tried it on a test table...

    however, that has to be one of the scariest things I've seen - renaming an...

  • RE: Renaming tables in Enterprise Manager

    I usually don't attempt renaming any objects as I have quite a few dependencies on most of them (usually stored procedures)..

    However, I cannot recreate what you posted - I just...

  • RE: datetime functionality

    Okay - just pick it up from the other place - will have them notify you!

    (Sorry!)

  • RE: datetime functionality

    Yes indeed - & just so I don't make your address public (I'm sure you don't want that) - let's just say that it went "across the border" to Canada...

  • RE: datetime functionality

    Know the best part Remi - agrees with all laws of physics; no illegal moves and still makes me the winner! <;-)

  • RE: datetime functionality

    Did you not get the video I sent you ?!?! It's been over 5 days since I mailed it!

  • RE: datetime functionality

    or this....

    select top 1 Crdate from table

    where Crdate (select max(Crdate) from table)

    order by Crdate DESC

Viewing 15 posts - 2,116 through 2,130 (of 2,469 total)