Forum Replies Created

Viewing 14 posts - 1 through 15 (of 15 total)

  • RE: Creating appropriate index

    Thanks Igor.

    "Here is a test to find out whether your mission in life is complete. If you're alive, it isn't. "

    Richard Bach

  • RE: Creating appropriate index

    So according to your suggestion, the index would be:

    CREATE INDEX IDX_LOCATION_DATE

    ON Location_Id, Transaction_Date

    INCLUDE (Vertical_ID, Customer_Id)

    After creating this index, how can I determine whether it is performing well or not?

    "Here is a test to find out whether your mission in life is complete. If you're alive, it isn't. "

    Richard Bach

  • RE: Creating appropriate index

    What if I create two indexes as below:

    CREATE INDEX IDX_DATE

    ON Transaction_Date

    CREATE INDEX IDX_LOCATION

    ON Location_ID

    INCLUDE (Vertical_ID, Customer_Id)

    "Here is a test to find out whether your mission in life is complete. If you're alive, it isn't. "

    Richard Bach

  • RE: More efficient way to iterate through table rows to perform Update

    With MERGE I want to know whether I can do something like this:

    MERGE <table name> USING <sql>

    WHEN MATCHED THEN

    IF (condition) Then (Update Query)

    When NOT Matched...

    "Here is a test to find out whether your mission in life is complete. If you're alive, it isn't. "

    Richard Bach

  • RE: Learning checklist for a newbie.

    Ok, so I see those books on SQL Server 2008. Since 2012 is there, shall I wait for these books to get revised for 2012?

    "Here is a test to find out whether your mission in life is complete. If you're alive, it isn't. "

    Richard Bach

  • RE: Learning checklist for a newbie.

    I need to check the availability of those books in India. Does that book on administration include Architecture and other Internals?

    Any web resources?

    "Here is a test to find out whether your mission in life is complete. If you're alive, it isn't. "

    Richard Bach

  • RE: Union query displays multiple records after Group By

    I am struggling to create a sample data for you.

    "Here is a test to find out whether your mission in life is complete. If you're alive, it isn't. "

    Richard Bach

  • RE: Union query displays multiple records after Group By

    I guess you missed my second post above where I added complete code with COUNT and image as attachment.

    "Here is a test to find out whether your mission in life is complete. If you're alive, it isn't. "

    Richard Bach

  • RE: Union query displays multiple records after Group By

    Data is not possible for me, but I am attaching output that I am getting when below given query is used:

    SELECT district_nm,Count(urban_appr) as urban_appr, Count(urban_inprogress) as urban_in, NULL, NULL, NULL,...

    "Here is a test to find out whether your mission in life is complete. If you're alive, it isn't. "

    Richard Bach

  • RE: What is the difference between 2008 R2 Express and 2008 R2 RTM?

    I want to download SQL Server 2008 Express R2 with Advanced Services. Where I can find the .iso for this edition?

    "Here is a test to find out whether your mission in life is complete. If you're alive, it isn't. "

    Richard Bach

  • RE: SQL Server does not exist or access denied.

    I also got similar error. Later I changed it to 11433. (see below).

    =============================================================

    Dim Constring As String = "workstation id=MYLAPTOP;packet size=4096;user id=rpk;password=123456;data source=62.141.48.155,11433;persist security info=False;initial catalog=testdb1"

    "Here is a test to find out whether your mission in life is complete. If you're alive, it isn't. "

    Richard Bach

  • RE: Import/Export SQL Server database to Oracle.

    Thanks for the replies. But I got the reply from the Microsoft Community and they gave the following link:

    http://support.microsoft.com/?id=247750

    Go to this link to know more about the double quotes problem....

    "Here is a test to find out whether your mission in life is complete. If you're alive, it isn't. "

    Richard Bach

  • RE: How to manage users with different copies of Table

    Thanks Andy,

    I will try your method, and come back to u.

    Thanks a lot.

    "Here is a test to find out whether your mission in life is complete. If you're alive,...

    "Here is a test to find out whether your mission in life is complete. If you're alive, it isn't. "

    Richard Bach

  • RE: How to manage users with different copies of Table

    Andy,

    Since I am new to SQL Server 2000, I am not following the row level method. Please decribe it how it can be done. If I create a new user...

    "Here is a test to find out whether your mission in life is complete. If you're alive, it isn't. "

    Richard Bach

Viewing 14 posts - 1 through 15 (of 15 total)