Forum Replies Created

Viewing 15 posts - 271 through 285 (of 2,436 total)

  • RE: I/O warnings in SQL Server 2005

    What type of hardware are you running ? What type of SAN are you running ?

    There are a few combinations that are prone to this.

    RegardsRudy KomacsarSenior Database Administrator"Ave Caesar! - Morituri te salutamus."

  • RE: Read Application Log(Windows) from SQL Server 2005

    Yes - this is possible.

    You will need to install the 'Log Parser' from MS - it's free.

    RegardsRudy KomacsarSenior Database Administrator"Ave Caesar! - Morituri te salutamus."

  • RE: RMI using XP_cmdshell

    oh the following:

    @cmd='"' +

    is single quote double quote single quite

    and

    '"'

    is also is single quote double quote single quite

    It's kind of hard to see on the post

    RegardsRudy KomacsarSenior Database Administrator"Ave Caesar! - Morituri te salutamus."

  • RE: RMI using XP_cmdshell

    and yet another way ... using some good old fashioned DOS within SQL:

    declare@cmdvarchar(1024)

    select @cmd='"' +

    'F:' + '&&' +--> drive letter to go to

    'cd RMI' + '&&' +

    'set path=c:\jdk1.6.0_10\bin' + '&&'...

    RegardsRudy KomacsarSenior Database Administrator"Ave Caesar! - Morituri te salutamus."

  • RE: No More SOX

    Finally in print - Thanks Steve - ISO9001 ! (did my first one over 15 years ago)

    If you have ISO9001 then SOX is kind of dumb (although Jeff has lots...

    RegardsRudy KomacsarSenior Database Administrator"Ave Caesar! - Morituri te salutamus."

  • RE: Dead Data

    As DBAs we act as the 'stewards' of data - we are not the owners of the data.

    However it is our collective responsibility to document concerns such as this and...

    RegardsRudy KomacsarSenior Database Administrator"Ave Caesar! - Morituri te salutamus."

  • RE: What's a strong password .. really ?

    Lots of good stuff here. Pass-phrases really work well. They are virtually uncrackable.

    Capitalization and letter/number substitution are cool as well when you mix in case sensitivity.

    Personally, use 16 character...

    RegardsRudy KomacsarSenior Database Administrator"Ave Caesar! - Morituri te salutamus."

  • RE: is possible get datafile objectname from an filemon offset?

    please add me to the 'interested luist' as well 😀

    RegardsRudy KomacsarSenior Database Administrator"Ave Caesar! - Morituri te salutamus."

  • RE: Case sensitive passwords

    after listening to that type of fix I think that it may be time to begin the search for a new application vendor ...

    RegardsRudy KomacsarSenior Database Administrator"Ave Caesar! - Morituri te salutamus."

  • RE: sql 2005 Table limit

    Here are a couple of backup options ...

    - LiteSpeed

    - Striping - http://www.sqlservercentral.com/Forums/Topic704434-357-1.aspx

    RegardsRudy KomacsarSenior Database Administrator"Ave Caesar! - Morituri te salutamus."

  • RE: Having to run this dbcc command to free up system ?

    Updates Statistics yup ... don't forget sp_recompile as well !

    Just because you have good statistics does not mean the optimizer will use them ...

    You have to 'force' plan recompilations !

    RegardsRudy KomacsarSenior Database Administrator"Ave Caesar! - Morituri te salutamus."

  • RE: sql 2005 Table limit

    performance mainly - due to bad statistics and index fragmentation are concerns.

    Additionally, dependent on the characteristics of the system, having a window large enough to perform 'Update Statistics' and 'Index...

    RegardsRudy KomacsarSenior Database Administrator"Ave Caesar! - Morituri te salutamus."

  • RE: Error while saving maintenance plan

    If you are executing SSMS from a location other than the SQL Server itself, check the client software versions on the server and the location you are executing SSMS from.

    If...

    RegardsRudy KomacsarSenior Database Administrator"Ave Caesar! - Morituri te salutamus."

  • RE: sql 2005 Table limit

    I have not reached 50 billion row mark yet. However we have numerous (between 50-100)databases with tables that range in row counts in the 100's of millions to just shy...

    RegardsRudy KomacsarSenior Database Administrator"Ave Caesar! - Morituri te salutamus."

  • RE: Advice on Fragmentation and Indexes

    To add to Jack's information - do not defragment or reindex tables less than 64k pages (one extent). Since they are stored on mixed extents it does nothing. Remember SQL...

    RegardsRudy KomacsarSenior Database Administrator"Ave Caesar! - Morituri te salutamus."

Viewing 15 posts - 271 through 285 (of 2,436 total)