Forum Replies Created

Viewing 15 posts - 2,806 through 2,820 (of 7,429 total)

  • RE: Stored Procedure

    Personally I would consider doing like so.

    Replace all occurrances of @DateHolder with

    DATEADD(ss,-1,DATEADD(d,DATEDIFF(d,0,GETDATE()+1),0))

    in your query code and get rid of the variable declaration.

    Replace @tdate with

    GETDATE()

    and get rid of variable declaration.

    Not...

  • RE: myLittleAdmin?

    I noticed it the other day too. Looks fairly straight forward and not overly complicated. I think it has more of a reach in the MSDE crowd but definently has...

  • RE: Blob Size

    As in what way? If you mean byte length try DATALENGTH()

  • RE: One or Multiple Developer Accounts

    No it will not create any conflicts. They however need to be carefull not to create the objects under their username but instead should make sure is dbo so that...

  • RE: Clustering and Performance

    Oops, sorry got out of the SQL frame of mind there.

  • RE: What makes a good developer?

    quote:


    quote:


    The good thing here is it is the other guy it messed up. If...

  • RE: What makes a good developer?

    Oh yes I do agree I just wanted to make sure your message didn't lead anyone down a bad assumption of what you meant.

    As for Frank

    June 16, 2003 at 5:21 am

    #461510

  • RE: QOD 6/16

    I read this a few weeks ago. But here take alook at the comparison at the bottom. http://www.microsoft.com/windowsserver2003/evaluation/overview/family.mspx And note the question did state Datacenter.

  • RE: Clustering and Performance

    Windows Load Balancing with an Active/Active setup can increase efficiency from the user perspective simple because you have both nodes under use (although I have seen WLB favoring one node...

  • RE: One or Multiple Developer Accounts

    I agree, you create issues with a single account with regards to security considering people do come and go.

  • RE: Developer tips for team.

    Never use reserved words or keywords in your table names (there is a list in BOL but it is so common to see Name and ID used).

    Do comeup with a...

  • RE: Check sum..

    Actually depending on how you move your data the process will generally throw errors if the data is corrupted or cannot be moved. You may just need to look for...

  • RE: VBScript running from command line

    quote:


    Thanks MW.

    I'm using stored procedures and the logic looks simple enough. Maybe 24 hours is as good as it gets.


  • RE: Cursors and using Static/Read Only

    It depends. Cursors are notroious for being used where not actually needed, but generally this is because the better solution is not seen. Look at you code and consider what...

  • RE: What makes a good developer?

    quote:


    quote:


    For me, it is not important what language a program is written in... A...

Viewing 15 posts - 2,806 through 2,820 (of 7,429 total)