Forum Replies Created

Viewing 15 posts - 376 through 390 (of 3,221 total)

  • RE: Cast in Varchar with different options

    Thanks for an easy, back to basics question.

    If everything seems to be going well, you have obviously overlooked something.

    Ron

    Please help us, help you -before posting a question please read[/url]
    Before posting a performance problem please read[/url]

  • RE: Can you please help me to get the median using the cursor

    Luis Cazares (7/14/2012)


    You're right, I got confused with the term as I haven't used it in a long time.

    Don't feel bad, I had to Google it to be reminded of...

    If everything seems to be going well, you have obviously overlooked something.

    Ron

    Please help us, help you -before posting a question please read[/url]
    Before posting a performance problem please read[/url]

  • RE: Can you please help me to get the median using the cursor

    I do not like to be a kill joy but the MEDIAN is defined as:

    median of a distribution with a discrete random variable depends on whether the number of terms...

    If everything seems to be going well, you have obviously overlooked something.

    Ron

    Please help us, help you -before posting a question please read[/url]
    Before posting a performance problem please read[/url]

  • RE: Can you please help me to get the median using the cursor

    I suggest you visit this site, and there you may find a solution to your problem.

    http://www.sqlsharp.com/

    Or read this article on SSC

    http://www.sqlservercentral.com/articles/SS2K5+-+CLR+Integration/3208/

    If everything seems to be going well, you have obviously overlooked something.

    Ron

    Please help us, help you -before posting a question please read[/url]
    Before posting a performance problem please read[/url]

  • RE: No Cursors.....

    One possible method is to use a temporary table for example:

    CREATE TABLE #T(Id INT IDENTITY(1,1),Tname VARCHAR(100),NumRows INT,RowsMod INT,Rspace INT, Uspace INT, StatDate DATETIME)

    INSERT INTO #T(Tname,NumRows,RowsMod,Rspace,Uspace,StatDate)

    SELECT -- remainder...

    If everything seems to be going well, you have obviously overlooked something.

    Ron

    Please help us, help you -before posting a question please read[/url]
    Before posting a performance problem please read[/url]

  • RE: Documentation

    Check out Redgate software

    http://www.red-gate.com/

    If everything seems to be going well, you have obviously overlooked something.

    Ron

    Please help us, help you -before posting a question please read[/url]
    Before posting a performance problem please read[/url]

  • RE: Are the posted questions getting worse?

    Revenant (7/13/2012)


    Lynn Pettis (7/13/2012)


    Brandie Tarvin (7/13/2012)


    YAY for people who still allow SQL Injection on their servers! (NOT!)

    http://news.cnet.com/8301-1009_3-57470786-83/hackers-post-450k-credentials-pilfered-from-yahoo/%5B/url%5D

    Yes, saw that on twitter yesterday.

    Some people will never learn I guess.

    I am curious...

    If everything seems to be going well, you have obviously overlooked something.

    Ron

    Please help us, help you -before posting a question please read[/url]
    Before posting a performance problem please read[/url]

  • RE: SQL Server - Multiple Users Contention

    Here is a link posted by Steve Jones on 12/31/2007 12:43 PM

    http://www.sqlservercentral.com/Forums/Topic437598-324-1.aspx#bm437640

    which in turn contains this link:

    http://technet.microsoft.com/library/Cc966393

    With no workload governor, there should be no limit as far as the database...

    If everything seems to be going well, you have obviously overlooked something.

    Ron

    Please help us, help you -before posting a question please read[/url]
    Before posting a performance problem please read[/url]

  • RE: Database

    Very easy QOD ... but then wondered, what is the gimmick, what am I not understanding ... after reading it about 10 times I concluded no tricks, nothing hidden just...

    If everything seems to be going well, you have obviously overlooked something.

    Ron

    Please help us, help you -before posting a question please read[/url]
    Before posting a performance problem please read[/url]

  • RE: Views and Dependencies

    To gain another perspective, and method to "refresh/update" the views meta data may I suggest looking at an older QOD at:

    http://www.sqlservercentral.com/questions/Views/88916/

    What happens behind the scene, so to speak, is shown...

    If everything seems to be going well, you have obviously overlooked something.

    Ron

    Please help us, help you -before posting a question please read[/url]
    Before posting a performance problem please read[/url]

  • RE: Stairway to Transaction Log Management in SQL Server

    It appears that Level 6, Level 7, and Level 8 have yet to be published. Other than attempting to contact the author and asking i guess we just sit...

    If everything seems to be going well, you have obviously overlooked something.

    Ron

    Please help us, help you -before posting a question please read[/url]
    Before posting a performance problem please read[/url]

  • RE: need to Display one word from string

    And may I thank you for letting me know that I may have been of some benefit... too often those who are helped do not acknowledge the help given.... so...

    If everything seems to be going well, you have obviously overlooked something.

    Ron

    Please help us, help you -before posting a question please read[/url]
    Before posting a performance problem please read[/url]

  • RE: need to Display one word from string

    Why do you need a case statement ? When something like this will produce the results you have indicated that you require.

    CREATE TABLE #T(theStringis VARCHAR(50))

    INSERT INTO...

    If everything seems to be going well, you have obviously overlooked something.

    Ron

    Please help us, help you -before posting a question please read[/url]
    Before posting a performance problem please read[/url]

  • RE: Union and Union All

    Nice to be reminded of the basics

    If everything seems to be going well, you have obviously overlooked something.

    Ron

    Please help us, help you -before posting a question please read[/url]
    Before posting a performance problem please read[/url]

  • RE: Query Required splition of home address column in street name & house #

    This might be what you require.

    CREATE TABLE #Address(HomeAddress VARCHAR(75))

    INSERT INTO #Address

    SELECT '13480 lone point lane' UNION ALL

    SELECT '4420 Douglas...

    If everything seems to be going well, you have obviously overlooked something.

    Ron

    Please help us, help you -before posting a question please read[/url]
    Before posting a performance problem please read[/url]

Viewing 15 posts - 376 through 390 (of 3,221 total)