Forum Replies Created

Viewing 15 posts - 811 through 825 (of 5,103 total)

  • RE: SQL 2005 write performance

    The real question is: why are you saying that there is write performance problems ?

  • RE: i wnat to get all records from start date and enddate when ever it is run

    ps (12/22/2008)


    WHERE ORDERDATE BETWEEN min(orderdate) AND max(orderdate)

    This part of the query is culprit.

    You just need to omit this condition. I guess u...

  • RE: Replication - subscriber has own independent data

    This is kind of a very open question. We can provide you with solutions to any problem you may encounter but replication is a very vast subject to be explained...

  • RE: Context Switches/sec

    mshah23 (12/16/2008)


    We have recently upgraded to SQL Server 2005 and now we are facing a very High Context Switches/sec on SQL Server 2005.

    It is touching 8000 all the...

  • RE: sp_recpompile after UPDATE Statistics?

    Also UPDATE STATISTICS on very large tables could be a double-egde sword if there is data skewness ... You may want do a FULLSCAN for those cases.

  • RE: Dynamic Coding

    If you alter a view while users are connected you should also run sp_refreshview @viewname = 'viewname' 😉

  • RE: SQL Server 2005 SP 3

    This is a shot in the dark but the First think I believe you should do is to make sure you have "windows" patched at the same level in both....

  • RE: Indexing for count?

    timothyawiseman (12/13/2008)


    I am trying to find the best way to speed up certain counts from a table. Is there a good way to index a table to assist with...

  • RE: Bitwise AND on CHAR datatype?

    Seems to me that your real problem is a design issue.

    Supposed you have a table of "scheduled" appointments table with (begin_datetime, end_date, salesman_id, appointment_id)

    Whatever is not on that table means...

  • RE: Application

    The_SQL_DBA (12/15/2008)


    Well, we have decided not to put the actual video into the database, as we want to have control over the amount of data that actually goes into the...

  • RE: Scope: The drastic caveat with Logon Triggers.

    Excellent war story.

    I think Rbarryyoung is right on the money. I believe that the lack of explicit transaction demarcation is the real problem.

    Do you mind specifying explicit "begin tran"/"commit...

  • RE: waiting for a response from the server

    Rob X Miller (12/9/2008)


    😀

    I have a question about the DBReINDEX.

    We have a really nice MS Access DB that uses linked tables to SQL Server 2005. Having just started, I ran...

  • RE: OPENROWSET - To use or not to use.

    Linked servers do not require the use of "openrowset/openquery/opendatasource".

    You may want to try that instead.

  • RE: Bulk Insert XML document into SQL table. How?

    Can you post examples of destination table and source xml file?

    With Operowset you can do the parsing on SQL Server itself:

    INSERT Table

    SELECT CONVERT(xml, BulkColumn, 2)

    FROM...

  • RE: Inserting multiple rows into a table

    rshafer (12/9/2008)


    I'm trying to insert multiple rows using the T-SQL below. Is there a more efficient way to do this? I've read a couple posts on here about...

Viewing 15 posts - 811 through 825 (of 5,103 total)