Forum Replies Created

Viewing 15 posts - 3,526 through 3,540 (of 6,104 total)

  • RE: How can I activate Sql Server 2000 license?

    You may have "non-keyed media" with respect to the serial number meaning you wouldn't enter one. Do the CDs have any language like "SELECT" or anything of that sort on...

    K. Brian Kelley
    @kbriankelley

  • RE: Help and pointers on Application Roles

    Pros and Cons:

    SQL Server Security: Pros and Cons of Application Roles

     

    K. Brian Kelley
    @kbriankelley

  • RE: Question of the Day for 21 Apr 2004

    udp/1434 is a listener service. If you don't know what port to talk to, you go and talk to it. Therefore it has to be statically configured. I can draw...

    K. Brian Kelley
    @kbriankelley

  • RE: Question of the Day for 21 Apr 2004

    True, but it's not the exact same interface. If you run Server Network Utility as a stand-alone program, you only get the option to alter interfaces on the local system....

    K. Brian Kelley
    @kbriankelley

  • RE: Question of the Day for 21 Apr 2004

    True, "easiest" is up for grabs as far as a definition. Some thoughts...

    Server Network Utility - The choice, obviously. However, one of the issues is you have to run it...

    K. Brian Kelley
    @kbriankelley

  • RE: Script Data of table

    If you're moving to a MySQL database that's on-line, you can use the MySQL ODBC driver and then use DTS to migrate the data instead of relying on a 3rd...

    K. Brian Kelley
    @kbriankelley

  • RE: Read only access to user tables

    Are they members of any other group that would have been denied access?

     

    K. Brian Kelley
    @kbriankelley

  • RE: guest account ?

    If you take a close look at the sysusers table, the hasdbaccess column actually determines if the guest account is active. The row for the guest account should be in...

    K. Brian Kelley
    @kbriankelley

  • RE: Active Directory and SQL Server

    Then a tool like stacenic described makes the job really easy if that's possible. We're in a side-by-side and having to do a lot of conversions by hand. It's not...

    K. Brian Kelley
    @kbriankelley

  • RE: SQL day of week question

    If Sunday is defined as the start of the week, something like this works:

    SELECT DATEADD(dd, -1 * (select datepart(dw, GETDATE()) -1), GETDATE())

    You can use CONVERT() to get it into the...

    K. Brian Kelley
    @kbriankelley

  • RE: Active Directory and SQL Server

    Are you setting up a side-by-side NT 4.0 and AD or are you upgrading the existing AD environment?

    K. Brian Kelley
    @kbriankelley

  • RE: SQL Server cluster on SAN

    There are approved SAN configurations for use with Windows clusters in general. When we had MS in here a while back (pre Windows 2000 SP3) we had to verify ours...

    K. Brian Kelley
    @kbriankelley

  • RE: Triple DES encryption

    Our developers tend to use the Crypto provided with .NET and do it in the application, but there are some options from 3rd party vendors. Here are some:

  • RE: SQL Server SP3a issue

    Interesting... changes to tempdb might result in concurrency issues, but apparently this appeared before SP3. So I'm not sure it's even applicable to your situation. The article cites mostly the...

    K. Brian Kelley
    @kbriankelley

  • RE: User Accounts

    Unless you have an explicit need for guest, you should sp_revokedbaccess it from the databases in question. If someone doesn't have a valid user in a given database and the...

    K. Brian Kelley
    @kbriankelley

Viewing 15 posts - 3,526 through 3,540 (of 6,104 total)