Forum Replies Created

Viewing 15 posts - 241 through 255 (of 3,221 total)

  • RE: Loop through table to group associated records

    scarlam (10/25/2012)


    I apologize about that. Glad you were able to make sense of my question. My table structure would follow along the lines of what you have posted.

    How...

    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: Loop through table to group associated records

    To assist those who want to assist you. please post the table definition, sample data and required results from the sample data.(Click on the first link in my signature block...

    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: Convert DD-Mon-YYYY to DD/MM/YYYY

    If I understand your request correctly, this may be helpful to you

    CREATE TABLE #Dob(birth VARCHAR(15))

    INSERT INTO #Dob

    SELECT '24-10-2012' UNION ALL

    SELECT '01-01-2011'

    ...

    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: Size of an index

    Try reading these:

    Estimating the Size of a Nonclustered Index

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

    Estimating the Size of a Clustered Index

    http://msdn.microsoft.com/en-us/library/ms178085(v=sql.100).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: Force result order

    Here is one way;

    -- Created only to show effect of ORDER BY clause

    CREATE TABLE #t(proj VARCHAR(1),carac VARCHAR(5))

    INSERT INTO #t

    SELECT...

    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: t-sql

    This might be what you need.

    SELECT sqlserver_start_time FROM sys.dm_os_sys_info

    Returns :

    2012-10-17 23:03:26.687

    So create your table and then insert the result of the T-SL, it will give you at least...

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

    Thanks, always 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: COALESCE

    Nice question - glad I read it 3 times .... subtle but nice

    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: Load CSV file into temptable

    Sqlism (10/15/2012)


    Thanks for the reply ron,

    I am expecting a script, not thru GUI

    Thanks again 🙂

    In the previous link note the following:

    You can also decide whether to save the package 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: Load CSV file into temptable

    You can learn how by going to this link.

    http://msdn.microsoft.com/en-us/library/ms141209(v=sql.100).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: upgrading sql 2000 to sql 2008 will make any problem to my database ?

    You can answer your questions by obtaining a copy of

    Microsoft SQL Server 2008 Upgrade Advisor

    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: first official day of every month for past 3 years

    scottichrosaviakosmos (10/14/2012)


    i have a table and a column with dates. there are multiple dates for same date . these dates are inserted on basis of a procedure run on working...

    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: While loop 2

    Thanks for a good question - good thing I had my coffee before answering

    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: T-SQL

    Whoopps clicked too often ...

    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: T-SQL

    Nice simple question on the basics. Every one should get this right (I hope)

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