Forum Replies Created

Viewing 15 posts - 1,006 through 1,020 (of 1,654 total)

  • RE: SQL Server Protocols

    I know that these four options are listed in Configuration manager under Protocols, but I wonder in how far "shared memory" can be described as a NETWORK protocol, since it...

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

  • RE: "maxtransfersize" option in SQL Maintenance Plan

    Jo Pattyn (12/3/2007)


    Where did you add the max transfersize? (is this replication?)

    I can't find it in the BOL

    The reason you can't find it in BOL is that this option was...

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

  • RE: "maxtransfersize" option in SQL Maintenance Plan

    Yes, you can add the maxtransfersize to your maintenance plan.

    Check this article for details:

    http://support.microsoft.com/kb/873482

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

  • RE: Firewall is blocking TCP/IP port 1433 for Transaction replication

    I agree with Steve. If you need replication then the firewall ports must be opened.

    If merge replication is an option for you you can replicate via http using either...

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

  • RE: Index design on a table where the primary key is not clustered

    Since you're using 2005, the management views can help you in optimizing your indexes.

    This will show you if and how your existing indexes are used:

    SELECT *

    FROM sys.dm_db_index_usage_stats

    ORDER...

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

  • RE: diff between start time & end time

    Just add a filter to your trace which filters on duration > 30000.

    You must use 30000 because the duration is measured in milliseconds.

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

  • RE: Backup MS SQL 2000 the proper way---- advice?

    Dan Gong (12/3/2007)


    I have come to realise the hard way that SQL agent on MS SQL 2000 does not work properly.

    What do you mean by that ?

    I've been...

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

  • RE: Format Ints with commas?

    Actually I didn't look in BOL.

    I have a short list of Tips & Tricks I often use in reports, and that's just one of them.

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

  • RE: Format Ints with commas?

    Sorry but I can't help you with this. I found the documentation in BOL not that good when it comes to formatting options. What I did a lot was looking...

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

  • RE: compressing backup files -Newbie

    SQL Server 2005 native backup can't compress the backup files, but there are several third-party solutions like SQL Litespeed, RedGate SQL Backup or SQLZip.

    Alternatively you could call an utility like...

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

  • RE: Format Ints with commas?

    Brandie,

    right-click on the textbox which contains your values and select properties. Go to the Format tab and in the field "Format code" enter the value "#,#".

    This will format the values...

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

  • RE: Sp_Cycle_ErrorLog not working

    Did you by any chance changed the location for the errologs recently?

    I once had a server there I changed the startup parameter and didn't noticed that it had a trailing...

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

  • RE: Destroyed databases with SQL 2005 Express

    Yes,

    definetely change the AUTO_Close to false. My guess is that opening the datbase takes too long, so the backup process can't read the file and reports an error file...

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

  • RE: dbcc show_statistics

    From what you wrote I would say there's nothing wrong with the index. Fragmentation is well within the acceptable range. Maybe it's just not the best index to use ?

    Can...

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

  • RE: What permission required at SQL server level?

    Your answer is in step 3: dbo or better said db_owner rights is needed for this. Except the jobmanagement part which is a bit tricky since jobs are stored in...

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

Viewing 15 posts - 1,006 through 1,020 (of 1,654 total)