Forum Replies Created

Viewing 15 posts - 3,541 through 3,555 (of 6,104 total)

  • RE: Script Data of table

    There are third-party tools that do it, but you might take a look at bcp. It's a command-line tool provided with SQL Server. Much faster than standard INSERTs.

    K. Brian Kelley
    @kbriankelley

  • RE: SQL Server SP3a issue

    There is a performance bug related to using the ODBC driver for SQL Server that showed up with SP3. Does this apply to your environment?

    FIX: Performance...

    K. Brian Kelley
    @kbriankelley

  • RE: Querying information_schema on another server?

    Aha! The Information Schema views are only in master with SQL Server 2000. You can actually see this if you use the Object Browser in Query Analyzer. Expand views under...

    K. Brian Kelley
    @kbriankelley

  • RE: Question on "Deny Access"

    If they have local Administrative rights, then likely the login corresponding to their Windows access is BUILTIN\Administrators. Assuming a default security setup, BUILTIN\Administrators is a member of the sysadmin fixed...

    K. Brian Kelley
    @kbriankelley

  • RE: Question on "Deny Access"

    The Windows users, they wouldn't happen to be members of the local Administrators group on that system (Operating System) would they?

    K. Brian Kelley
    @kbriankelley

  • RE: Question on "Deny Access"

    No, Windows permissions can't override SQL Server security. Are you saying you have SQL Server logins and have denied users access based on those SQL Server logins or you've applied...

    K. Brian Kelley
    @kbriankelley

  • RE: SQL server Memory Usage

    Total Server Memory is the "total amount of dynamic memory the server is currently consuming."

    Target Server Memory is the "total amount of dynamic memory the server is willing to consume."

    K. Brian Kelley
    @kbriankelley

  • RE: What rights to give for creating tables.

    True. Unless the owner is specified, it will be as the user who created them, meaning aliasing is pretty much it.

    K. Brian Kelley
    @kbriankelley

  • RE: Computer grabbing all IP Adresses - is SQL Server instance involved?

    Okay, that's a bit different. You say it's choking all the network traffic and it's exposed to the Internet. When you get a...

    K. Brian Kelley
    @kbriankelley

  • RE: What rights to give for creating tables.

    The fixed database role db_ddladmin also has rights to create an object under the ownership of any user, to include dbo.

    K. Brian Kelley
    @kbriankelley

  • RE: SQL server Memory Usage

    There are several easy ways:

    Performance Monitor (Perfmon.exe)

    - SQL Server:Memory Manager >> Total Server Memory (KB)

    Using a tool like pslist.exe from SysInternals

    Looking at Task Manager locally...

    K. Brian Kelley
    @kbriankelley

  • RE: Querying information_schema on another server?

    What error are you getting?

    K. Brian Kelley
    @kbriankelley

  • RE: Computer grabbing all IP Adresses - is SQL Server instance involved?

    When you say all available IP addresses were taken, what was reporting that issue?

    K. Brian Kelley
    @kbriankelley

  • RE: where the cube metadata information is store?

    That is set when you choose to migrate the repository, so it could literally be anything. As for the access file, even after the repository is migrated I think the...

    K. Brian Kelley
    @kbriankelley

  • RE: where the cube metadata information is store?

    Unless you've moved your repository for Analysis Services to SQL Server, look for an Access database in the bin directory called msmdrep.mdb. This is probably where the metadata you're looking...

    K. Brian Kelley
    @kbriankelley

Viewing 15 posts - 3,541 through 3,555 (of 6,104 total)