Forum Replies Created

Viewing 15 posts - 436 through 450 (of 761 total)

  • RE: Help on Select statement

    tbabs25 (5/14/2012)


    Can anyone help me in coverting the output I am geting when a type in my select statement.

    I get a number in return instead of data.

    select va_title

    from contact

    and...

  • RE: Problem to create query!!!!!!!

    Faculty Topics Contribution learning Intellectual Effectiveness

    PRASHANT ASP.NET 7.9 7.8 7.8 8.1

    TARUN SQL 7.7 7.8 7.9 7.7

    MAYUR VB.NET 7.9 7.9 7.9 7.8

    RAJIV HTML 7.3 7.2 7.0 7.2

    How are you getting all...

  • RE: SP in SQL server

    "The Guru's Guide to Transact-SQL", this is a good book for TSQL.

    Try downloading the ebook.

  • RE: transpose rows into columns without aggregate

    Jeff Moden (5/12/2012)


    nitin_456 (5/12/2012)


    Thanks for the reply !!

    But there can be thousand of Comid , is there any other way to to do this...

    Understood on there being thousands...

  • RE: Count docs problem

    pgmr1998 (5/13/2012)


    I do wish to post sample data, but, however, my employer has very private info and this would stir trouble. Can we please take this one step at a...

  • RE: Distinct Issue

    Thanks for posting the DDL of the tables. But you might as well do one last thing and that is post some sample data for the tables as a string...

  • RE: Run Procedure with breaks in between

    Dev (5/12/2012)


    Divide and Conquer.

    Split the SP’s logic in few steps, create new SPs for each step and call each SP from application. Each SP can provide its own status (success...

  • RE: Distinct Issue

    Please check out the link in my signature and post the DDL, Sample Data and the Expected Result Set, the way it is mentioned in the link.

  • RE: need help with duplicate records in a table

    Labneh (5/11/2012)


    Old Hand... i think you did it!!!!!

    i just tested it and got what i want... i will keep testing and let you know.

    you guys are the best!

    thank you

    Labneh

    The...

  • RE: Run Procedure with breaks in between

    Matthew Darwin (5/11/2012)


    This is reminding me of a script I saw from a colleague to call a slow stored procedure several times over with different parameters; so instead of optimising...

  • RE: Run Procedure with breaks in between

    Lynn Pettis (5/11/2012)


    Only suggestion I can give you:

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

    Thanks for the link Lynn.

    I'll see what can be done and get back to you.

  • RE: Run Procedure with breaks in between

    Lynn Pettis (5/11/2012)


    Unfortunately, can't give you much more as no one here can see what you see. Unless you show us what you are working with and how you...

  • RE: Run Procedure with breaks in between

    Lynn Pettis (5/11/2012)


    Even if it is possible, I am going to go out on a limb here and say it may not be practical to do so.

    It all comes back...

  • RE: need help with duplicate records in a table

    Try this:

    --Creating Table

    Create Table Ex

    (RecNum Int,

    Patient_ID int,

    Patient_FirstName varchar(10),

    Emp_ID int,

    Emp_FirstName varchar(10),

    App_Datetime DateTime )

    --Inserting Sample Data

    Insert Into Ex

    Select 1, 1234, 'John', 9876, 'Adam', '5/12/2012 9:00 am'

    Union...

  • RE: Run Procedure with breaks in between

    Lynn Pettis (5/11/2012)


    Explain why you want delays inside your procedure(s) instead of having them finish as quickly as possible. What you are asking for really makes no sense from...

Viewing 15 posts - 436 through 450 (of 761 total)