Forum Replies Created

Viewing 15 posts - 2,986 through 3,000 (of 7,429 total)

  • RE: 'Analysis of database' in Errorlog

    Based on this line

    2003-05-08 07:40:30.28 spid2 Recovery complete.

    I would have to say this SQL Server was stopped (either just service or whole box).

    If those DB are highly accessed and had...

  • RE: Profiler Filter not working

    I think in what I stated it is a limit of the filter interaction with the event. Capture only what you need in regards to events. For example things like...

  • RE: 'Analysis of database' in Errorlog

    Anything occurr such as a close db action or an error occurr around in the error log at that time? And did you check Event Viewer to see if anything...

  • RE: deferring constraints?

    To the best of my knowledge there is nothing like this in SQL.

  • RE: TIMESTAMP not unique! help!

    If you can find how to reproduce from yuor logs then send to MS. But I sure would make them aware as this is supposed to be unique within a...

  • RE: 'Analysis of database' in Errorlog

    Might be wrong and cannot find any of my servers with this on it. But I believe if the ox stops unexpectedly it actually is checking the DBs for potential...

  • RE: GROUP BY & SUM question

    I agree your query looks right.

    But try changing

    FROM salesdetails sd, products p

    WHERE p.prod_id_id=sd.sale_prod_id

    to

    FROM salesdetails sd

    INNER JOIN products p

    ON p.prod_id_id=sd.sale_prod_id

    to see what happens.

    Also what do you end up with?

  • RE: change an object owner

    Ok I am gonna start as from the top.

    1) On the new server create your suer without a default DB or any permissions to DBs accept those that already exist...

  • RE: Query Execution plan - strange icon

    I believe you are correct and just before or after you should see a blue forked arrow as the data streams are seperated or brought together.

  • RE: DTS Executing in EM vs. Query Analyzer

    When you open in EM the code is run locally to your machine. When you run thru QA it will be executed at the server. If the server and your...

  • RE: How to copy a Sql server 1 to Sql server 2

    There are multiple ways to do this but none actually take one command in most cases (especially when you count the copy). The way I generally use if I can...

  • RE: change an object owner

    1) Look at sp_changeobjectowner in BOL.

    2) Look at sp_change_users_login to sync the old account to the new one on the new server. Access will be same it is that the...

  • RE: Indexing Tables with Byte type fields

    You should still consider a Clustered index even on a small table. It will add very minimal overhead to storage (statistics stuff which you generally see created anyway, table will...

  • RE: SQL Server DBA Position Available

    Housing yes uns on average about $100,000. ANd as a hint if you move to the area live on the Florida side of the line for tax purposes (no personal...

  • RE: SQL Server DBA Position Available

    quote:


    60 - 78K for a 8 - 10 year guy?

    I know guys graduating from college this year with 0 yrs experience,...

Viewing 15 posts - 2,986 through 3,000 (of 7,429 total)