Forum Replies Created

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

  • RE: The Cost of Function Use In A Where Clause

    Well...

    After seeing so many suggestions here about improving querries, let me try to Sum up the Articele in one sentence...

    DONT put a field of a table into ANY function. This...

  • RE: The Cost of Function Use In A Where Clause

    Good Article...

    I often see querries who do this wrong... Especially the "Date-30" querries.

  • RE: Introduction to Bitmasking in SQL Server 2005

    Hello...

     

    I have to agree with most former posters! Bitmasking is NOT the way to go... I can see the "posibility" to store "ONE" flagged enumerations inside a single field(This is...

  • RE: SQL Server 2005 Certification

    There are also several FREE eLearning sessions for SQL 2005 from Microsoft. But I must admit I didnt find them very enlightning. "Playing" with the server and watching some webcasts...

  • RE: save null to date field

    Hello...

     

    You might take a look at the so called "SmartDate" Datatype. This Datatype is NOT is default .NEt Datatype, but it is included with CSLA.Net from Rocky Lhotka. Its a...

  • RE: Generating a Sequential Pattern

    I was thinking a bit about the performance problem I mentioned above when creating a sequence.

     

    The group by querry could be rewritten so it can correctly use the indexec.

     

    The following...

  • RE: Generating a Sequential Pattern

    It should be a separate column and concatenated into the computed column that is displayed to the user.

     

    I think thats the most important post in this discussion. I think one...

  • RE: wizard to generate diagrams of table relationships via public/private keys and sprocs

    Wellll...

     

    If they dont show up in Visio (Or inside SQL when you add a table to the diagram) then yo are missing one thin

    The relationship itself. Be prepared for a...

  • RE: Deduping Data in SQL Server 2005

    Hi...

     

    I usually clean up my "mess" with "something" like this

     

    delete from myTable where myID NOT in

    (select min(MyID) from myTable group by myUniqueField)

     

    But I think the best application for CTE...

  • RE: Exam Thoughts 70-441

    Hello...

     

    I had the 441 on Monday also. I must say i also was plesantly supprised about it. The questions really only made "sense in the context" of the business case....

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