Forum Replies Created

Viewing 15 posts - 451 through 465 (of 492 total)

  • RE: Deleted store procedure

    Krasavita (5/18/2010)


    It happend yesterday, how long trace would keep what happend in past?

    The default trace is limited to 20MB, but the last 5 trace files are kept. Hopefully there...

    Leo
    Nothing in life is ever so complicated that with a little work it can't be made more complicated.

  • RE: Can I make a query fail without killing the connection?

    If your application fails because of a SQL Error you need to fix the app. There should be (almost) no unhandled errors within the app, related to its SQL interaction,...

    Leo
    Nothing in life is ever so complicated that with a little work it can't be made more complicated.

  • RE: How much SSRS, SSIS ans SSAS should a DBA know ?

    You should know at least enough to install and configure these so they work, even on a cluster environmnet. Then you should be able to do basic things like export,...

    Leo
    Nothing in life is ever so complicated that with a little work it can't be made more complicated.

  • RE: Best SQL Server Edition for a offline application

    It also depends on what the users are doing. Is it possible for them to use SQL Express? It's free!

    If it's just an app connecting to a database and...

    Leo
    Nothing in life is ever so complicated that with a little work it can't be made more complicated.

  • RE: DBCC CHECKDB Consistency Error

    You need to run these two queries which will give you an idea of hat data is corrupt. The records are there, it just looks like a type value has...

    Leo
    Nothing in life is ever so complicated that with a little work it can't be made more complicated.

  • RE: temp table

    dlink (5/17/2010)


    Is it possible to query from a global temp table from another server via linked server?

    When I use

    SELECT * from linked_server.db.owner.##GlobalTemp

    I get a message:

    Invalid object name ##GlobalTemp

    Since the ##GlobalTemp...

    Leo
    Nothing in life is ever so complicated that with a little work it can't be made more complicated.

  • RE: Can I make a query fail without killing the connection?

    Henry Treftz (5/17/2010)


    I want the query to fail and the connection to remain

    Why? Is this an application? In general unless you have built in functionality to do this, like a...

    Leo
    Nothing in life is ever so complicated that with a little work it can't be made more complicated.

  • RE: Seperate Clustered Index that matches Primary Key Index

    Or worse still, they didn't know what they were doing and created all the PKs as non-clustered and then created clustered indexes.

    I go with Jason, drop and re-create the PKs...

    Leo
    Nothing in life is ever so complicated that with a little work it can't be made more complicated.

  • RE: Unable to load client print control

    Not sure what advise you are looking for. Except I saw the samproblem about a year ago when our system admins decided to apply an SP to Windows XP. All...

    Leo
    Nothing in life is ever so complicated that with a little work it can't be made more complicated.

  • RE: HELP -- Lost drive with database transaction logs

    It's been a while since I've done this, so I don't know all the details, but it is theoretically possible to create a new empty log file and get the...

    Leo
    Nothing in life is ever so complicated that with a little work it can't be made more complicated.

  • RE: Increasing SQL Server memory

    What are you seeing in PerfMon?

    SQL is memory hungry, SQL 2005 Standard Edition's memory usage is only limited by the OS.

    On 64 bit servers if you are on SP3 and...

    Leo
    Nothing in life is ever so complicated that with a little work it can't be made more complicated.

  • RE: Update query taking long

    .. creating indices would generally help select statements. But in this case as it is a update, would it have any negative impact ? ..

    Only if you are also updating...

    Leo
    Nothing in life is ever so complicated that with a little work it can't be made more complicated.

  • RE: migrating nvarchar data

    How are you viewing the characters via Managment Studio?

    Is this a straight query as in select * from...

    What about the local server or workstation environment settings, are these always the...

    Leo
    Nothing in life is ever so complicated that with a little work it can't be made more complicated.

  • RE: Update query taking long

    Yes, creating a non-clusterd index on the two columns would help, you probably want to do it after hours as it's going to take some time and cause blocking. Unless...

    Leo
    Nothing in life is ever so complicated that with a little work it can't be made more complicated.

  • RE: Update query taking long

    Also where in the index are these 2 columns? If they aren't the first 2 columns you are doing a table or clustered index SCAN, of 8 million rows.

    Send us...

    Leo
    Nothing in life is ever so complicated that with a little work it can't be made more complicated.

Viewing 15 posts - 451 through 465 (of 492 total)