Forum Replies Created

Viewing 15 posts - 91 through 105 (of 3,221 total)

  • RE: find dates where over x # of rows were created?

    To help those who will attempt to help you ... can / will you provide the table definition (or those fields pertinent to your question), some sample data and the...

    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: Timestamps

    Nice question for a Monday ... great start to the week

    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: Upgrade production Server - SQL 2005 to SQL 2008 - inplace upgrade

    Might I suggest using the UPGRADE ADVISOR and carefully reviewing the results

    upgrade advisor is available at;

    http://www.microsoft.com/en-us/download/details.aspx?id=11455

    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: Table Alias

    Nice question on the basics ... thanks

    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: Search data.

    NOTE Sean Lange's comments should / must be given every consideration...

    although the following will do the task you require You might want to modify your T-SQL statement to:

    ...

    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: Delete other than top 2 rows for each foreign key element in table.

    ChrisM@Work (4/25/2013)


    -- Always run a SELECT first to see which rows are affected.

    -- This query should return the rows you want to keep

    SELECT MemberId, [Event], [Event Date]

    FROM (

    SELECT MemberId, [Event],...

    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: sys.dm_os_memory_clerks Descriptions

    If I understand your question correctly... try this link

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

    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: Find Serial number in sql string

    This might be what you need.

    SELECT CHARINDEX('SN',os,1) AS 'Starting position'

    ,CHARINDEX(';',os,CHARINDEX('SN',os,1)) AS 'Ending position'

    ,SUBSTRING(os,CHARINDEX('SN',os,1)+ 3 ,7) FROM #TempAD

    Results:

    Starting positionEnding position (No column...

    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: A Billion Transactions

    Steve, thanks a great read particularly if one follows your link to

    http://www.microsoft.com/en-us/news/stories/88acres/88-acres-how-microsoft-quietly-built-the-city-of-the-future-chapter-1.aspx

    It has me wondering if someone will create software equal for our private homes ... and if...

    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: Sum and Count

    Nice question - learned something from it ... Again thanks

    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: COUNT() Function

    Koen Verbeeck (4/16/2013)


    Nice question, thanks.

    +1

    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: I am getting learn to post,am i correct now??????? What will be your reply for this???????

    andrewalex.r (4/10/2013)


    K, I need to change the format of the Date

    You can change the format for displaying the date using the convert function. For example:

    SELECT id,CONVERT(VARCHAR(10), DateValue, 101)AS 'MM/DD/4...

    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: New and Basic Result-set Paging functionality in SQL 2012 Version.

    Thanks - excellent information

    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: User interface

    todd.ayers (4/8/2013)


    So this is what the user sees on the front end? This is the actual window they would be working in to retrieve information and so forth? It is...

    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: User interface

    Use this link to get a small (very small) image of SSMS

    http://en.wikipedia.org/wiki/SQL_Server_Management_Studio

    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 - 91 through 105 (of 3,221 total)