Forum Replies Created

Viewing 15 posts - 1,291 through 1,305 (of 1,654 total)

  • RE: Database Tuning Advisor recommending too many Indexes on a Table??

    I can't say that I'm using DTA a lot, but the DTA will always try to optimize indexes for the current workload. So different workload files can result in different...

    [font="Verdana"]Markus Bohse[/font]

  • RE: Security Configuration in SQL 2005 !

    John,

    you can't deny permission for the sysadmin role. And since you can't create your own server role either, the only solution I ca think of is using a generic login...

    [font="Verdana"]Markus Bohse[/font]

  • RE: Security Configuration in SQL 2005 !

    John,

    for xp_cmdshell you can grant the users execution permissions on the procedure.

    About the jobs it's a bit more difficult. Viewing the status, starting and stopping of jobs can be...

    [font="Verdana"]Markus Bohse[/font]

  • RE: Replication

    What type of replication have you been using merge or transactional ?

    Where is the distributor running? On the publisher, the subscriber or a third server ?

    I find it a bit...

    [font="Verdana"]Markus Bohse[/font]

  • RE: How to check if there any database links on the server

    What do you mean by "database links"? Are you talking about linked servers?

    Linked servers you can either view in EM or query using this

    select * from sysservers

    where isremote =1

    Markus

    [font="Verdana"]Markus Bohse[/font]

  • RE: Multiple backup schedules

    Not sure how your jobs looks like, but in general if a job has multiple schedules and the job is still running from schedule1 while schedule2 kicks in, the second schedule...

    [font="Verdana"]Markus Bohse[/font]

  • RE: How to apply "System ID" filter in SQL Server 2005 Profiler

    The checkbox is gone, but you can add a column filter which excludes al SPID's below 50.

    Markus

    [font="Verdana"]Markus Bohse[/font]

  • RE: How can I transfer registered servers in Enterprise Manager to SQL Server 2005?

    IN SSMS open the "Registered Servers" window. When you right click on database engine  and select "Previously registered servers" it will add all the servers you had registered in EM.

    Markus

    [font="Verdana"]Markus Bohse[/font]

  • RE: Daily, Weekly, Monthly Checklist for DBA

    Pavan,

    I don't think there is "a" list. The tasks you should do depend on your environment, the type and the size of databases, availability requirements and a lot of other...

    [font="Verdana"]Markus Bohse[/font]

  • RE: query spiking CPU to 100%

    Did you run update statistics after the upgrade?

    After upgrading a database the old statistics become invalid and SQL Server can't use them anymore for optimizing the query plans.

    Markus

    [font="Verdana"]Markus Bohse[/font]

  • RE: Server DDL trigger not working

    Kostas,

    I don't think it's the hot fix which causes this behaviour. On my test sytem I only applied SP2 no toher hotfixes.

    While the trigger works fine for CREATE and...

    [font="Verdana"]Markus Bohse[/font]

  • RE: Restoring backup DB in another Server

    Maria,

    you ned to use the MOVE TO option to provide the path where you want to place the database files. See BOL for the details

    Markus

    [font="Verdana"]Markus Bohse[/font]

  • RE: Records with lower case in DB

    Vika,

    you don't say if the column you're querying contains jaust a single character or more.

    In case it's just a single character you can use this:

    SELECT * From table1

    where ASCII(col1) between...

    [font="Verdana"]Markus Bohse[/font]

  • RE: Question of the Day for 26 Apr 2007

    I agree with all comments above.

    While in theory Raid1 might be faster for reads I never saw any documentation of such a case in real life. I even remember MS...

    [font="Verdana"]Markus Bohse[/font]

  • RE: Cluster failover notification

    Adam,

    with "SELECT SERVERPROPERTY('ComputerNamePhysicalNetbios') you can query on which clusternode SQL Server is running.

    You could then create a job which is scheduled to run when SQL Agent starts. During failover...

    [font="Verdana"]Markus Bohse[/font]

Viewing 15 posts - 1,291 through 1,305 (of 1,654 total)