Forum Replies Created

Viewing 15 posts - 1,246 through 1,260 (of 2,612 total)

  • RE: query of updated data backup

    I think what you are asking is if you can take a backup of just data that has changed recently?

    The answer is sort-of. You can take a differential backup...

  • RE: hw comparasion

    Lots of things go into coming up with the execution plan for a query in SQL Server. Take a look at the execution plans on each server. It...

  • RE: Unique column in 4 tables

    I don't think you have captured your requirements all that well in your posting.

    From what you have here, my first though would be to use a GUID - then it...

  • RE: Data will not move to new FileGroup

    Yes, the scripting that Management Studio generates does. Basically, it just does a table lock on the table you are moving so all other processes will be blocked during...

  • RE: OLE DB Destination is a synonym to a table via linked server

    A SQL Destination will certainly not work with a synonym to a linked server. The SQL Destination needs to be a local SQL Server because of the way it...

  • RE: New to full text search and need some pointers

    You may want to reconsider using FullText for this. A fuzzy lookup in SSIS would probably be more appropriate. It is designed to find "close" matches based on...

  • RE: Data will not move to new FileGroup

    IMAGE data is not stored in the data pages of the table, so moving the clustered index (which is the actual table data) does not move your IMAGE data.

    If memory...

  • RE: Suggested Approaches Appreciated

    So you need to change the design AND upgrade your server...

    Is this a one-time update, something you intend to do regularly in batch, or something you need to really happen...

  • RE: Stored Proc runs slower than in Query Analyzer

    If you can, clear your procedure cache. In the procedure, add an OPTIMIZE FOR and specify the variable values you are using when running through Management Studio. The...

  • RE: publisher subscriber situation

    That is what I meant by don't multi-task your server. You "could" mirror and then use a database snapshot of your mirror so you can see the data on...

  • RE: nolock not working?

    That would probably do it. As another temporary stop-gap option, you could do the check you are doing now with NOLOCK, but when you find a record that you...

  • RE: publisher subscriber situation

    I would typically recommend you do not try to multi-task a server and use it for both a DR solution and a reporting solution. They tend to conflict with...

  • RE: Query gone haywire

    The optimizer may decide to do an index scan if it feels it is going to need a high percentage of the records. This may simply be the case,...

  • RE: Stored Proc runs slower than in Query Analyzer

    Without looking at the execution plans, I would have to guess that you get very different plans depending on the parameters you pass in. Since stored procedures cache execution...

  • RE: nolock not working?

    NOLOCK is a pretty scary thing to use, and you have misused it here. The problem you are having is probably the order being modified is moving from one...

Viewing 15 posts - 1,246 through 1,260 (of 2,612 total)