Forum Replies Created

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

  • 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...

  • 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...

  • 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...

  • 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...

  • 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...

  • 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...

  • 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...

  • 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...

  • 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...

  • 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...

  • 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...

  • 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...

  • RE: logic/algorithm behind mirroring?

    Service Broker is part of the answer, that's why you don't see any jobs. The other part is that it is essentially reading the logs and using that to determine...

  • RE: Shrink File by using empty file option

    If you shrink the file you'll have to do the index maintenance regardless of you you do it, sorry. The real question is what are you trying to do.

    If this...

  • RE: Unable to connect Clustered SQL instance from Management studio outside the Server

    Mani-584606 (5/10/2010)


    Its working when I provided the below

    myserveramed instance

    But the same is NOT working when I accessed through VPN. From VPN the below is working myserver\<named instance>,port.

    What should I do...

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