Forum Replies Created

Viewing 15 posts - 1,681 through 1,695 (of 2,436 total)

  • RE: Naming Conventions for SQL Server

    A few things to remember about standards ...

    • There are always exceptions - plan for and document them
    • They are 'living' documents - the only 'constant' in life is 'change'
    • They are useless...

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

  • RE: New install select collation

    It does work ... you need to make the COLLATION between any 2 columns used in any relational operation th same. Below is you example modified a bit (it now...

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

  • RE: where do trace files get put when you turn a flag on? dbcc traceon (1205)

    If you are performing this fromQA then 1204 will add it to your output.

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

  • RE: Must Knows of SQL server

    Aside from all the topical information posted (yes, you have to pretty much hit everything in this post) the absolute best things you can have in your tool box are:

    • A...

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

  • RE: Database backup/restore not using enterprise manager

    Using either ISQLW or OSQL and invoking sp_start_job.

    From BOL:

    sp_start_job [@job_name =] 'job_name' | [@job_id =] job_id

        [,[@error_flag =] error_flag]

        [,[@server_name =] 'server_name']

        [,[@step_name =] 'step_name']

        [,[@output_flag =] output_flag]

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

  • RE: Database backup/restore not using enterprise manager

    Jus t one more thought ... what about a scheduled task ? You can create one without a schedule and just execute it on demand. I do it all the...

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

  • RE: Password decipher?

    Not to my knowledge. However there are a few 'brute' force sql procs out on the web ... all of them need to be run as a 'sysadmin' ... a...

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

  • RE: Copy job get failed when we copy a backup file to network drive

    All good work arounds for the issue. Here's a couple of other thoughts. Does your server have anti-virus software ? It could be readin just the file name/header  in order to...

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

  • RE: SQL Server 6.5 - Database connectivity issue via DMZ (Internet) Web Server

    Here is something a bit more comprehensive:

    1433 TCP

    1434 UDP

    3389 TDP --> used for support - RDP

    445 TCP

    445 UDP

    135 TCP

    135 UDP

    137 UDP

    138 UDP

    139 TCP

    This information was garnered using ethereal on a project through a firewall with a default access rule of...

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

  • RE: SQL 2K Standard Edition

    I do not know for sure but logic is telling me that the limit is 2 Gb per instance on a server. My reasoning is as follows:

    if you have one instance...

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

  • RE: BCP error -Unable to open BCP host data-file

    Also, if there are spaces in the name don't forget the double quotes ... like "C:\Program Files" ... If you're executing from xp_cmdshell you might try a DIR command in...

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

  • RE: Multiple fields with same name

    If the column names are the same in multiple tables you have two choices - aliasing or object qualification. Either one will do. We have some similar issues with 3rd...

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

  • RE: Transaction Log Logical File Name

    There is also the sysaltfiles table in the master database that contains all database files ... here's a quick query:

    select name, filename

    from master..sysaltfiles

    where fileid = 2

    and name = 'your_database_name'

    fileid =...

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

  • RE: Large Capacity Drives verses Small Capacity drives

    The more spindles the better <period> The only time when purchasing huge disks (146 Gb) pays off is in a SAN configuration where you can slice into LUNs and reslice...

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

  • RE: Cannot sort a row of size 8427

    I've seen this error before ... By chance is this table involved in some type of JOIN processing ? If it is, then it's the JOINed result table that is...

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

Viewing 15 posts - 1,681 through 1,695 (of 2,436 total)