Forum Replies Created

Viewing 15 posts - 1,126 through 1,140 (of 1,653 total)

  • RE: How do I determine if replication is being done within a SQL 2005 instance?

    No, the presence of a database called distribution is not enough. Three reason for this are:

    1. The distributor could be on another server

    2. Replication might no longer be used

    3. You...

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

  • RE: Querying the max row length

    Hey,

    finally somebody coming back to the original topic of this post.

    As you can find somewhere in the beginning of this post, I was searching for the record in a...

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

  • RE: host running SQL Server -- how to configure its windows server role?

    I usually don't use any of these preconfigured roles. If you choose application server it will install IIS and ASP.net. If you want to use Reporting Services you will need...

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

  • RE: Change login linked with dbo

    Use sp_changedbowner to map another account to the user dbo.

    Markus

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

  • RE: Querying the max row length

    Yes,

    on large databases it will take a while, to get the results. In my case that was not such an issue, but any improvements on the script(s) are welcome.

    Markus

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

  • RE: How to find Record length in a table in bytes

    Jai,

    have a look at this post

    http://www.sqlservercentral.com/Forums/Topic385732-9-1.aspx

    It might help you with your question as well.

    Markus

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

  • RE: Prevent Alert From Triggering

    David,

    to disable your alert run:

    EXEC dbo.sp_update_alert

    @name = N'Test Alert',

    @enabled = 0 ;

    You could run this before your maintenance jobs start and...

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

  • RE: Execute Permissions on Stored Procedures

    Andy,

    the problem is that when you use dynamic SQL (which you shouldn't) you have to grant permissions to the base tables. Exec on the procedure is not enough.

    You can find...

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

  • RE: Restrict log file size (SQL server 2005)

    If you database is in FULL recovery mode, a database backup is not enough to keep the transaction log small. You also need to take regular log backups.

    If point...

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

  • RE: SQL Svr 2k Password Policy

    Brad,

    you cannot lock out or disable an account in SQL 2000. So even if you would read the error log for failed login attempts, there's no action to block an...

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

  • RE: Good SQL Server 2005 Performance Training Course

    Just to clarify why I recommended Solid Quality.

    Being a MCT myself and having talked to a lot of students, I noticed that the standard MOC courses often don't satisfy...

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

  • RE: SQL Server 7, 2000 Administration

    I would suggest to script out all the database objects, constraints, permissions,users etc.

    When drop and re-create the database using the scripts.

    This approach has as an advantage over truncating all tables,...

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

  • RE: Need sp_trace_setfilter xref list of @columnid parameters

    This will place a filter aon the database id.

    declare @intfilter int

    set @intfilter = 5

    exec sp_trace_setfilter @TraceID, 3, 1, 0, @intfilter

    One tip, if your not sure about the paramters and values...

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

  • RE: Replication Script with no initial snapshot

    You're right about the @sync_type parameter. A value of 'none' should indicate that the subscriber already has the schema and data is synchronised.

    What parameter value are you using?

    Markus

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

  • RE: Block SQL login attempts failures

    G

    I would do 2 things. You obviously can't stop these attempts as long as you don't know where they originate from so:

    First of all rename the sa account, so...

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

Viewing 15 posts - 1,126 through 1,140 (of 1,653 total)