Forum Replies Created

Viewing 15 posts - 181 through 195 (of 287 total)

  • RE: sql 2005 "encrypt connection" option

    By default SQL Server 2005 will generate a 512 bit certificate for this purpose. You will of course need to distribute the certificate to the clients.

    You can, however configure...

  • RE: SQL Server 2005 with additional 2000

    No, you can't do this.

    If you understand first that the OS must be clustered, *then* you install SQL Server, the answer is self evident.

    You will need two machines clustered for...

  • RE: Rogue Replication

    Check you meet the rules on upgrading replicated databases:

    # If you use SQL Server 2000, service pack 3 (SP3) or greater is required.

    # A Distributor can be any version as...

  • RE: Login failed for user ''''sa''''

    If 1433 isn't blocked, then the firewall is unlikely to be implementing the drop all/any default rule, so the box'll be rooted through other means.

    Can I ask; what is out...

  • RE: ''''sa'''' login failure

    You really don't want to enable SQL authentication anyway or use the sa account - grant a windows group access and add your windows account to it.

  • RE: ''''sa'''' login failure

    Default installation is windows only authentication *thank Bill*

  • RE: Login failed for user ''''sa''''

    Search results for: 211.233.38.77

    OrgName: Asia Pacific Network Information Centre

    OrgID: APNIC

    ...

  • RE: How to Track Deletion of any Database

    As Neil said - grant users the permissions to do their jobs, not sysadmin memberhips.

    However, you can prevent casual database deletions with a trigger:

    CREATE TRIGGER STOP_DB_DROP

    ON ALL SERVER

    FOR DROP_DATABASE

    AS

    PRINT...

  • RE: Anyone sat the beta exams for 2005 yet?

    Doh. I switched to Vue for these exams after 7 years with Thompson...typical.

    Anyone seen an increased demand for 2005 skills? THe job boards seem to just have 2005...

  • RE: OS for Standard Edition

    The answer is in the question - you can't cluster SQL server without clustering the operating system.

    Can you cluster Windows 2003 standard edition? No.

    Hope this helps.

  • RE: Outer join in SQL Statement

    *= was a Transact-SQL shorthand, not an ANSI standard.

  • RE: Anyone sat the beta exams for 2005 yet?

    Passed 70-431.

    My profile was updated today, the dates shown are the date I took the exam, and MCTS was awarded 25th January...

  • RE: Installing sql 2000 64bit EE on Windows 2005 64bit EE

    This is a SQL 2005 forum.

    I believe SQL 2000 64-bit edition only runs on Intel Itanium and Itanium II chips.

  • RE: Change Password

    Andrea,

    It's probably just a parameter you've missed out. Users can run sp_password on their *own* account, but they must specify the old password.

    --Try this logged in as user1

    --This will...

  • RE: How to backup asymmetric key in SQL 2005

    The asymmetric keys are stored in sys.asymmetric_keys, just restore from there.

Viewing 15 posts - 181 through 195 (of 287 total)