Forum Replies Created

Viewing 15 posts - 316 through 330 (of 380 total)

  • RE: 10 Myths about Backups in SQL Server

    Nice article but while reading it I could only thing about one thing.

    Why do you call these Myth's?

    A Myth is something that people believe is true that is not. ...

  • RE: Changing SQLServerCentral - Initial Thoughts

    Post removed for being way too sarcastic.

  • RE: Isolation levels

    Nice question and Answer!

    Two great questions two days in a row.

    Awesome!

  • RE: Changing SQLServerCentral - Initial Thoughts

    Steve - I have only had two things that over 12 years of use I would recommend in any new updates to the site. These things are not IMHO...

  • RE: Using IF in a Stored Procedure. Syntax help neeed.

    RedBirdOBX (8/5/2013)


    Corrected. Removed "BEGIN".

    Works so far.

    Yes from what I read in your initial post you should either remove the first Begin after as or add another END as the...

  • RE: SSIS 2012 -Template

    L' Eomot Inversé (8/4/2013)


    Nice question.

    The answer seemed a bit obvious though - the phrase " Import Project Wizard" suggested that importing an SSIS project would be what was...

  • RE: SSIS 2012 -Template

    This is one of the best questions in a while.

    I can tell by the answers provided that a lot of us learned something today.

    Thanks so much. 😎

  • RE: Lock mode RangeI-N

    Nice question igorMi and great explanation. I had not though about these types of locks for a while.

  • RE: Reverting To BCP for DTS package instead of migrating to 2008?

    rwalker03 (8/2/2013)


    Thanks for taking the time to respond it is appreciated

    You are welcome. As someone that suffered with other peoples DTS and loved BCP and scripts for SQL/shell commands,...

  • RE: Reverting To BCP for DTS package instead of migrating to 2008?

    If you are familiar with DTS designer and the new look and feel of Visual Studio 2008 or 2010 then highly recommend using SSIS. Also you can use the...

  • RE: LEN and CONVERT

    Hugo Kornelis (8/1/2013)


    PHYData DBA (8/1/2013)


    I'll just let the code speak for itself.

    Have Fun! 😎

    EDIT - Watch how datalength changes on the string variable.

    This time I remembered to refresh before posting....

  • RE: LEN and CONVERT

    philip.cullingworth (8/1/2013)


    PHYData,

    I'm not sure I understand what you are trying to say with this code, but let's go through it select by select

    Seems like understood everything as well as I...

  • RE: LEN and CONVERT

    Hugo Kornelis (8/1/2013)


    PHYData DBA (8/1/2013)


    Phillip would you mind posting a link to the article your quote comes from? I not trying to say anyone is right or wrong. ...

  • RE: LEN and CONVERT

    DECLARE @var money = 123456789101118.12345

    DECLARE @nvarchar nvarchar(21)

    DECLARE @char nchar(22)

    --Select 1

    SELECT LEN(N'123456789101118.12345'), DATALENGTH(N'123456789101118.12345') ,N'123456789101118.12345'

    --Select 2

    SELECT LEN(@var), DATALENGTH(@var), @var

    --Select 3

    SELECT @nvarchar = convert(nvarchar(21), @var)

    SELECT LEN(@nvarchar),...

  • RE: LEN and CONVERT

    philip.cullingworth (8/1/2013)


    PHYData DBA (8/1/2013)


    Hugo Kornelis (8/1/2013)SELECT LEN(@var) implicitly converts @var to string, because that's the only data type supported for LEN. This conversion is independent of the clients' Windows locale...

Viewing 15 posts - 316 through 330 (of 380 total)