Forum Replies Created

Viewing 15 posts - 16 through 30 (of 81 total)

  • RE: Restore Master Database

    The path is correct.

    www.sqlAssociates.co.uk

  • RE: Ongoing help needed from ideally local consultant

    Hi,

    I'm currently London based, I'm a SQL Server DBA/Developer/Consultant with 10 years experience in SQL Server 2000/2005/2008 (I have more information on LinkedIn with regards to my career histroy, please...

    www.sqlAssociates.co.uk

  • RE: sqlservr consumes too much memory

    Rather than just capping the amount of RAM SQL Server can utilise I think you should be looking into what is the actual cause of the problem.

    Have you gathered any...

    www.sqlAssociates.co.uk

  • RE: SQL 2008 Maintenance Fails Intermittently After Completing Tasks

    Your welcome.

    If the storage side of things is out of your hands, that would be my starting point. Have a look at the failure history for the Maintenance Plan...

    www.sqlAssociates.co.uk

  • RE: SQL 2008 Maintenance Fails Intermittently After Completing Tasks

    Hi,

    I've come across this error type before but only in Visual Studio while manually executing SSIS packages, which kind of makes sense as SQL Server "under the covers" will create...

    www.sqlAssociates.co.uk

  • RE: compare database schema for database located on many instances

    Hi,

    Another option could be to gather data from the INFORMATION_SCHEMA views on each SQL Server instance onto one server and then write a query to highlight any differences. Using...

    www.sqlAssociates.co.uk

  • RE: How can i get the most freequently dialed numbers

    Hi,

    I might be totally missing the point here, but wouldn't the following provide the information you require?

    select

    [UserID],

    [Extension],

    [Called_Number] [Called Number],

    case [Call_Type_Int]

    when 3 then 'O/G INT'

    when 4 then 'I/C INT'

    end [Call Type],

    count(1)...

    www.sqlAssociates.co.uk

  • RE: Recover Free Space

    Hi,

    I totally agree with the previous post, providing the disk where the database MDF resides isn't a host for multiple MDFs/other files and by shrinking this particular database as much...

    www.sqlAssociates.co.uk

  • RE: Database Mail not working for job notifications

    Keith,

    My first port of call would be the restart of the SQL Server Agent as this is actually part of the setup process.

    From personal experience I would avoid registry changes...

    www.sqlAssociates.co.uk

  • RE: sql server 2005 merge replication

    Hi Patrick,

    That is pretty much correct, as well as having the database on both sides the table schemas must also match.

    When a snapshot is created/executed the process creates multiple files...

    www.sqlAssociates.co.uk

  • RE: tempDB black box, how to manage it?

    The temp table [tempdb_space_usage] is from the perf_warehouse example.

    My though process behind sending you that syntax was to hopefully identify some rather large temp tables which you could then cross...

    www.sqlAssociates.co.uk

  • RE: Database Mail not working for job notifications

    I would arrange the "bouncing" of the SQL Server Agent as this is part of the Operator/Email Notification setup process, without a restart it simply will not work.

    www.sqlAssociates.co.uk

  • RE: sql server 2005 merge replication

    Patrick,

    How frequently does the data change? If the data is fairly static you could create a full database backup of the publication database, manually restore this on to the...

    www.sqlAssociates.co.uk

  • RE: tempDB black box, how to manage it?

    Just a quick thought before I run through a profiler/Perfmon/custom logging process, assuming you are running SQL Server 2005 or 2008, try running this command:

    use [tempdb]

    go

    select

    OBJECT_NAME(object_id) [Object Name],

    ...

    www.sqlAssociates.co.uk

  • RE: tempDB black box, how to manage it?

    One option would be to run profiler and log the growth stats for tempdb to a table, you can then correlate any tempdb growth sperts back to a procedure/group of...

    www.sqlAssociates.co.uk

Viewing 15 posts - 16 through 30 (of 81 total)