Forum Replies Created

Viewing 15 posts - 226 through 240 (of 728 total)

  • RE: CTE

    Koen Verbeeck (9/25/2013)


    Very interesting question. Never used a CTE with a DELETE statement before.

    +1. Same here. Never used with Delete so never saw the CTE from that view. πŸ™‚

    Overall good...

  • RE: Urgent Help Guys for this Scenario!!!

    Quick answer:

    selecta.Empid, a.Empskills+', '+b.Empskills

    from#Empa

    inner join #Empb on a.Empid = b.Empid

    where a.Empskills = 'C' and b.Empskills = 'CPP'

  • RE: Five Rules For Sucessful Conversations With DBAs

    kevaburg (9/24/2013)


    sqlnaive (9/24/2013)


    kevaburg (9/24/2013)


    sqlnaive (9/24/2013)


    Really Fantastic article. I have been on both sides of it and now working purely as Developer so that helps me having a healthy negotiation with...

  • RE: Five Rules For Sucessful Conversations With DBAs

    kevaburg (9/24/2013)


    sqlnaive (9/24/2013)


    Really Fantastic article. I have been on both sides of it and now working purely as Developer so that helps me having a healthy negotiation with system DBAs....

  • RE: Five Rules For Sucessful Conversations With DBAs

    Really Fantastic article. I have been on both sides of it and now working purely as Developer so that helps me having a healthy negotiation with system DBAs. Remember the...

  • RE: Dynamic Query

    Nice easy question for me. πŸ™‚

  • RE: Disable [guest] database user in [msdb] database

    Very good question. A topic very often left behind. though I was on the wrong side of answers, it definitely cleared basics about the 'guest' login. πŸ™‚

  • RE: Varchar to numeric ???

    Thanks Jeff. Nice article.

    I came across this function just two days back during some conversion issues. I found some surprisingly different results and thus started playing with it (for...

  • RE: Varchar to numeric ???

    Can anyone please put some light into it ?

    float and Numeric are both number data types so why we can't convert the varchar directly to numeric ? The difference between...

  • RE: Varchar to numeric ???

    πŸ™‚ No worries Sean. but thanks about the STR functionality. Was playing with it and had fun to know about some things. πŸ™‚

    Adding to your command statements, these two works...

  • RE: Varchar to numeric ???

    My question remains the same:

    float and Numeric are both number data types so why we can't convert the varchar directly to numeric ? The difference between the two being "exact"...

  • RE: Varchar to numeric ???

    Thanks Seane. So in order to convert it to numeric/decimal, two conversions have to be done like this:

    select convert(numeric(28,8), convert(float, @varchar))

    float and Numeric are both number data types so why...

  • RE: COALESCE

    Andrew Watson-478275 (9/20/2013)


    As well as the reference given, this one should be included too:

    http://msdn.microsoft.com/en-us/library/ms190309(v=sql.105).aspx

    Thanks for referring this link Andrew. I had planned to include this link as additional info but...

  • RE: Adding User to SQL Server

    I second these guys on security. Windows authentication is best way of providing secuiryt to users. AD group can be defined for group of users requiring saem level of permissions.

  • RE: Datefirst

    L' Eomot InversΓ© (9/18/2013)


    sqlnaive (9/18/2013)


    it is going to set the default language for that session as 'us_english' no matter what the other settings are. I myself has 'british' as default...

Viewing 15 posts - 226 through 240 (of 728 total)