Forum Replies Created

Viewing 15 posts - 2,926 through 2,940 (of 3,221 total)

  • RE: Access to SQL

    tcaldw

    If memory serves me correctly with Access all necessary data is transmitted to a scratch file on the client, and then the query executes using the scratch file as its...

    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: numeric sort of a varchar field

    na.netjob - you provided some, just some answer to Jeff Moden's question, but NOT enough to allow someone to really help you.

    Unanswered is how do you want those...

    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: Denormalized table

    Think you should read Jeff Moden's latest article

    Cross Tabs and Pivots, Part 1 – Converting Rows to Columns

    By Jeff Moden, 2008/08/19

    at http://www.sqlservercentral.com/articles/T-SQL/63681/

    It is a great article on what it...

    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: Offline Learning of SQL - Advice

    These two easily fit on my home desktop (Dell Inspiron -530 OS XP Professional with Sp-3 2 GB Ram 230 GB disc) and allow me to do just about...

    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: How to move database into app_data?

    Do not know if this is exactly your problem, but read the following posts

    http://forums.microsoft.com/TechNet/ShowPost.aspx?PostID=3487915&SiteID=17

    Seems as if many others are having a some what similar problem.

    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 2005 editions

    Last time I looked Developer Edition is available from Amazon ... depending upon your selected mode of shipping price will be approximately $50.. (USD)...

    Took the time to look as I...

    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: DTS package to delete all rows from excel

    When examing the excel file, the 1st 150 rows (beside the column heading) is empty, but the 150 rows is inserted after row 150. So I got 300 rows...

    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: The multi-part identifier "getmaxfid.maxfid" could not be bound.

    Do not see a question....

    Please read the article whose link is in my signature block and then re-post

    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: Deleting all entries, minus last 3

    Larson please post after reading the article whose link is in my signature block... It is meant to have you provide enough data so those here can best help you

    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: 3 or more purchases over a 12 month period

    timbw

    It is based on the sum of totalPurchased

    Sergiv

    HAVING

    COUNT(T2.row_id) >= 3

    Sergiv a nice solution. I puzzled for over an hour how NOT to use a...

    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: Syntax error converting the varchar value...

    Might I suggest looking at Books On Line (BOL) subject:

    ADO and SQL Server

    Managing Long Data Types.

    Rather a good discussion / howto guide, includes creating a sample table based...

    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: Start of each new group

    Gova sorry but I am having difficulty completely understanding your question

    Expected result is to have data for each group when it is started.

    Example '01/01/2008' and '01/04/2008' are same data...

    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: update query append number in start of all rows

    Update Dbo.Table1 UPDATE dbo.location SET local_Phone = '91'+local_phone

    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: Start of each new group

    I believe this would give you the results you require

    SELECT Rowkey, Min(RowDate), Version, Capacity FROM Mytable GROUP BY Rowkey,Version,Capacity

    For rowkey 23 it will return

    RowkeyDate ...

    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 Colunm matches between two tables

    Would suggest that you review

    sys.system_columns, sys.columns and sys.all_columns in BOL and you should be able to write some T-SQL to extract the information you are seeking

    or

    use INFORMATION_SCHEMA.COLUMNS for example:

    Using 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]

Viewing 15 posts - 2,926 through 2,940 (of 3,221 total)