Forum Replies Created

Viewing 15 posts - 3,256 through 3,270 (of 6,104 total)

  • RE: Confused: /awe /pae /3gb

    The /3GB is optional in your case. Like I said, since in the virtual memory space it forces the kernel into the last 1 GB (giving 3 GB contiguous to...

    K. Brian Kelley
    @kbriankelley

  • RE: Active Directory Migration

    We're doing a side-by-side as well. In our case we're going to script the changes as we're also looking to clean-up a bit the security model wherever we can. It'll...

    K. Brian Kelley
    @kbriankelley

  • RE: Database Design: Database with large amount of text.

    What is the total maximum size of a row (record) given the 6900 bytes?

    K. Brian Kelley
    @kbriankelley

  • RE: SQL Server Installed on Domain Controller

    3) Reliability/Availability. Do you want an application bug to blue screen your domain controller, thereby resulting in a denial of service for your DC?

    K. Brian Kelley
    @kbriankelley

  • RE: using comma separated values without dynamic Sql

    The technique goes something like this:

    declare @values varchar(100)

    -- note the change with the addition of commas

    set @values = ',1,2,3,4,'

    select *

    from table

    where charindex(',' + col1 + ',', @values) >...

    K. Brian Kelley
    @kbriankelley

  • RE: SQL Server Installed on Domain Controller

    Where to start? How about an editorial that appeared yesterday!

    Editorial: Keep 'em Separated (Bill Boswell)

    Or this:

    Perform a Secure SQL Server installation

    The quote...

    K. Brian Kelley
    @kbriankelley

  • RE: Confused: /awe /pae /3gb

    You don't have to have the /3GB to access the additional memory, but that switch does cause the OS to use only up to 1 GB in the virtual address...

    K. Brian Kelley
    @kbriankelley

  • RE: Get data from Active Directory and store onto SQL server

    There are several ways to go about this. You can do so via a linked server connection using the ADSI provider or you can use the ADSI objects in a...

    K. Brian Kelley
    @kbriankelley

  • RE: distributed transaction in linkedservers

    We've seen this situation with a "loopback" linked server, which is what your setup is. The following Microsoft article contais a different 7391 error than what you've posted, but we...

    K. Brian Kelley
    @kbriankelley

  • RE: When should dbo be used?

    There is an advantage to using dbo in the create object scripts. You might have a cause where you are logged in as a user that has the ability to...

    K. Brian Kelley
    @kbriankelley

  • RE: Sp3 handling of DisallowAdhocAccess

    Generally, if you don't need something you should not allow the behavior. This blocks non-sysadmin level access to adhoc queries. Keep in mind that it doesn't stop adhoc queries executed...

    K. Brian Kelley
    @kbriankelley

  • RE: Users create dbo objects

    Not without making them the actual database owner or aliasing them as dbo. An alternative might be to run a script periodically that finds all objects not owned by dbo,...

    K. Brian Kelley
    @kbriankelley

  • RE: Users create dbo objects

    Yes. Specify the owner with a two-part name. The user execting the script must either be a member of the db_owner or db_ddladmin database role. For instance:

    CREATE PROC dbo.usp_MyProc

    AS

    SELECT 1

    The...

    K. Brian Kelley
    @kbriankelley

  • RE: SQL Server Not Using All Available Memory

    An application by default will only use a maximum of 2 GB of memory. This is a limitation imposed by the operating system. If you want SQL Server to be...

    K. Brian Kelley
    @kbriankelley

  • RE: I have a question about duties of a DBA vs. Network Admin..

    We've offloaded some server monitoring and print management responsibilities to a couple of network engineers (with OJT) because they're workload has been light and ours has been pretty heavy. Perhaps...

    K. Brian Kelley
    @kbriankelley

Viewing 15 posts - 3,256 through 3,270 (of 6,104 total)