Forum Replies Created

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

  • RE: XML

    *it's somewhere in the OpenXML statement*

    :pinch:

    MCITP: Database Administrator 2005
    MCTS SQL Server 2008
    MCP SQL 2012/2014
    MCSA SQL Server 2012/2014
    MCSE Data Management and Analytics

  • RE: log file shrinking..

    dbcc sqlperf(logspace)

    this will tell you how big the log files are and what % the log file is using ...

    This will give you an indication of what you could...

    MCITP: Database Administrator 2005
    MCTS SQL Server 2008
    MCP SQL 2012/2014
    MCSA SQL Server 2012/2014
    MCSE Data Management and Analytics

  • RE: The Real World: Implementing AWE

    (/3GB reduces the kernal memory to 1 GB and increases the user memory to 3 GB (instead of the normal 2 and 2).

    /PAE enables the windowing memory functions so that...

    MCITP: Database Administrator 2005
    MCTS SQL Server 2008
    MCP SQL 2012/2014
    MCSA SQL Server 2012/2014
    MCSE Data Management and Analytics

  • RE: How to reduce log file size in BCP in?

    :blink: will read up thanks

    MCITP: Database Administrator 2005
    MCTS SQL Server 2008
    MCP SQL 2012/2014
    MCSA SQL Server 2012/2014
    MCSE Data Management and Analytics

  • RE: How to reduce log file size in BCP in?

    switch from simple to bulk-logged recovery mode ...

    MCITP: Database Administrator 2005
    MCTS SQL Server 2008
    MCP SQL 2012/2014
    MCSA SQL Server 2012/2014
    MCSE Data Management and Analytics

  • RE: CAREER ADVICE: Applying for DBA Jobs?

    +1 Thanks for all the hints/tips

    MCITP: Database Administrator 2005
    MCTS SQL Server 2008
    MCP SQL 2012/2014
    MCSA SQL Server 2012/2014
    MCSE Data Management and Analytics

  • RE: CAREER ADVICE: Applying for DBA Jobs?

    Thanks Enrico, SSIS and SSRS is what I physically did and SSAS is what I have read/learned about hence I know what they can do/there for ...

    So far I'm not...

    MCITP: Database Administrator 2005
    MCTS SQL Server 2008
    MCP SQL 2012/2014
    MCSA SQL Server 2012/2014
    MCSE Data Management and Analytics

  • RE: CAREER ADVICE: Applying for DBA Jobs?

    I've been out of the DBA realm for a year +- now ...

    Been pulled in SAP BW and it's just not for me :pinch:

    Busy studying to upgrade my MCITP 2005...

    MCITP: Database Administrator 2005
    MCTS SQL Server 2008
    MCP SQL 2012/2014
    MCSA SQL Server 2012/2014
    MCSE Data Management and Analytics

  • RE: SQL Server 2008R2 Ent not using all available memory

    Setting max server memory to the minimum value can severely reduce SQL Server performance and even prevent it from starting.

    http://msdn.microsoft.com/en-us/library/ms178067.aspx

    with a server with 12Gb of memory is not not...

    MCITP: Database Administrator 2005
    MCTS SQL Server 2008
    MCP SQL 2012/2014
    MCSA SQL Server 2012/2014
    MCSE Data Management and Analytics

  • RE: SQL Serer Logins

    there are functions within SSIS that can do this as well ...

    MCITP: Database Administrator 2005
    MCTS SQL Server 2008
    MCP SQL 2012/2014
    MCSA SQL Server 2012/2014
    MCSE Data Management and Analytics

  • RE: Best way to create a weekly email report for SQL Server

    Hi have a look @ this http://www.sqlservercentral.com/articles/Monitoring/69650/

    I have been using it and it monitors all the sql servers on an entire domain for me ...

    saves a lot of time ......

    MCITP: Database Administrator 2005
    MCTS SQL Server 2008
    MCP SQL 2012/2014
    MCSA SQL Server 2012/2014
    MCSE Data Management and Analytics

  • RE: /3GB and AWE

    until you add that extra 4GB of RAM to the server you can enable the 3GB switch ...

    once the extra 4GB RAM is in the server you can enable AWE...

    MCITP: Database Administrator 2005
    MCTS SQL Server 2008
    MCP SQL 2012/2014
    MCSA SQL Server 2012/2014
    MCSE Data Management and Analytics

  • RE: Striping data accross files in 1 filegroup

    Brandie Tarvin (6/23/2011)


    3) Move the data from the old file/filegroups to the new files. This can be achieved by removing the tables' clustered indexes and recreating them on the new...

    MCITP: Database Administrator 2005
    MCTS SQL Server 2008
    MCP SQL 2012/2014
    MCSA SQL Server 2012/2014
    MCSE Data Management and Analytics

  • RE: Striping data accross files in 1 filegroup

    from the 4 datafiles on 4 filegroups and 4 drives we would like to migrate to a new server

    6 datafiles, 1 filegroup (defined filegroup) 6 drives

    will not partition the tables

    MCITP: Database Administrator 2005
    MCTS SQL Server 2008
    MCP SQL 2012/2014
    MCSA SQL Server 2012/2014
    MCSE Data Management and Analytics

  • RE: Database mail issue on 1 server

    Fixed it :-P:-P

    there was a mail stuck in the queue which I removed via

    Use MSDB

    ALTER QUEUE ExternalMailQueue WITH STATUS = ON

    set nocount on

    declare @Conversation_handle uniqueidentifier;

    declare @message_type nvarchar(256);

    declare @counter bigint;

    declare @counter2...

    MCITP: Database Administrator 2005
    MCTS SQL Server 2008
    MCP SQL 2012/2014
    MCSA SQL Server 2012/2014
    MCSE Data Management and Analytics

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