Forum Replies Created

Viewing 15 posts - 1,396 through 1,410 (of 15,381 total)

  • RE: The View Insert

    Great question. Oddly after answering I decided to see if it really would correctly. I ran the create table and view scripts. Then ran the insert statement. It says 1...

  • RE: Microsoft SQL Developer Certification For beginers

    kailashsingh85 (7/13/2016)


    Kindly suggest exam book for Microsoft SQL DBA and SQL Developer Certification for 1st Level.

    No offense but it doesn't sound like you need an exam book yet. The exam...

  • RE: Select vs Set Local Variable

    Mohit Dhiman (7/14/2016)


    Sean Lange (7/13/2016)


    Mohit Dhiman (7/13/2016)


    Even with the primary clustered key, are we sure here that the select always returns 2 at the last?

    Wonder why they always used...

  • RE: t-sql 2012 datatype

    wendy elizabeth (7/13/2016)


    What other data type would you recommend? That is large but not as large as varchar(max) is?

    Define large. A varchar can be as large as varchar(8000). That is...

  • RE: How to use a table value function that splits a string

    NineIron (7/13/2016)


    I have a TVF that takes two parameters, string and delimter but, I don't know how to pass the field values into the function in order to get my...

  • RE: Select vs Set Local Variable

    Mohit Dhiman (7/13/2016)


    Even with the primary clustered key, are we sure here that the select always returns 2 at the last?

    Wonder why they always used to tell us there...

  • RE: t-sql 2012 datatype

    Jason-299789 (7/13/2016)


    Sean,

    Don't some of the Internal Diagnostic views still use TEXT data types or have they all been changed to (n)varchar(max) datatypes?

    I also believe that when you pipe an...

  • RE: Microsoft SQL Developer Certification For beginers

    kailashsingh85 (7/13/2016)


    Hello,

    Anyone suggest for Microsoft SQL DBA Certification For beginners.

    Please let me know topics, exam level wise, fee where we can attend.

    Thanks,

    Kailash

    Maybe start with google?

  • RE: Microsoft SQL Developer Certification For beginers

    kailashsingh85 (7/13/2016)


    Hello,

    Anyone suggest for Microsoft SQL Developer Certification For beginners.

    Please let me know topics, exam level wise, fee where we can attend.

    Thanks,

    Kailash

    Maybe start with google?

  • RE: t-sql 2012 datatype

    durga.palepu (7/12/2016)


    text datatype is supported in SQL 2012 but will be deprecated in future versions.

    alternative is to use varchar(max) and if you need multilingual support use nvarchar(max) datatype.

    Thanks,

    Durga

    Actually it has...

  • RE: Subquery Question

    SQLPain (7/12/2016)


    Thanks Sean, what would be the correct statement, Im using this.

    (SELECT MAX(COUNT(C.AppID) WHERE C.Status = 'Funded')

    Can we do MAX on aggregates?

    No you can't nest aggregates. There seems to be...

  • RE: t-sql 2012 datatype

    I agree with Grant 100000% on not using text. My only change would one of not being as subtle as "you shouldn't use the text datatype". I would say you...

  • RE: Subquery Question

    SQLPain (7/12/2016)


    Facilitator is text field, that's why subquery not a JOIN

    Clearly is isn't a text field or your query wouldn't work. It must be a varchar.

    Regardless I don't see what...

  • RE: Subquery Question

    SQLPain (7/12/2016)


    I am using the following query to see how many apps were approved, funded, etc from the following facilitators:

    SELECT DISTINCT

    C.Facilitator

    ,ISNULL((SELECT COUNT(C.AppID) WHERE C.Status = 'Funded'), 0) AS [Funded...

  • RE: Are the posted questions getting worse?

    Steve Jones - SSC Editor (7/12/2016)


    Now to try and motivate him to finish the last couple merit badges.

    Another challenge is getting them motivated to do the presentation to the council....

Viewing 15 posts - 1,396 through 1,410 (of 15,381 total)