Forum Replies Created

Viewing 15 posts - 6,556 through 6,570 (of 6,600 total)

  • RE: Limiting impact of poorly designed queries

    And yet - you want to allow end users the ability to write ad-hoc queries? Even when you know you have a problem with developers (who should know better)...

  • RE: Limiting impact of poorly designed queries

    Sorry - but I have to jump in here.

    What happens to your OLTP web based application when a user submits a resource intensive ad-hoc query that blocks access to one...

  • RE: Failed Login

    Just a thought - but have you checked the SQL Agent service?

  • RE: Synchronize SQL databases

    Well, if you really want to roll your own - how about Powershell and SMO. Yes, you still need to install both Powershell and SMO - but they are...

  • RE: Help with Year calculations

    There are many ways to get this done - but, depending on where this is being done can have a performance impact.

    One of the faster methods of getting...

  • RE: SQL Time out Error Urgent!!!

    The process you are going to need to following to shrink the log file is:

    1) Change recovery model to simple

    ALTER...

  • RE: Database backup will not restore

    Mike,

    Since you are already looking at Red-Gate SQLBackup, try creating a new backup using SQLBackup and compression to create a smaller file. Try restoring that file - copying that...

  • RE: Transaction Log Getting Full

    MALIK (3/3/2008)


    HI

    i just receive an email error msg from sql server by saying this..

    The SQL Server performance counter 'Percent Log Used' (instance 'DATABASE') of object 'SQLServer:Databases' is now above the...

  • RE: Question about maintenance job

    If you are on SQL Server 2005 - you can do everything you need to do in a maintenance plan. SSMS maintenance plans include a task called Execute SQL...

  • RE: Moving databases to different locations (paths)

    One more thing you might want to consider. Before running your backup set the database into single user mode then run the backup. This will insure that there...

  • RE: Moving databases from one drive to another....

    My guess is that you are on a cluster. The drives have been added to the cluster, but not so that SQL Server can see them. On a...

  • RE: Management Studio scripting procedures using sp_executesql

    Jason Selburg (2/23/2008)


    Hi all, this may be a simple fix, but I can't find any documentation on it, and noe of the Management Studio options seem to affect it. It...

  • RE: SQl Query

    I think what you are going to need to do is have a separate column for each OR condition, for example:

    SELECT

    ...

    ,case when...

  • RE: help with sys.dm_db_index_physical_stats!

    Since you have to resort to dynamic SQL anyways, don't bother with two statements and a temp table. You can do something like:

    Declare @sql varchar(max);

    Set @sql = 'Use '...

  • RE: SQL SERVER HELP

    tigersam_20002000 (2/22/2008)


    What features of SQL Server require you to use full logging?

    Whether or not you use simple or full recovery model is not dependent upon any features of SQL Server....

Viewing 15 posts - 6,556 through 6,570 (of 6,600 total)