Forum Replies Created

Viewing 15 posts - 2,101 through 2,115 (of 6,105 total)

  • RE: copy database to CD

    If you can take the database offline, you can do this: Detach it from SQL Server using sp_detach_db, copy it over, and then reattach it using sp_attach_db (you'll probably want...

  • RE: stored procedures vs query strings

    It depends on what you're trying to do. A small SQLExpress box only the one user touches... you probably won't see any noticeable performance gains using stored procedures. And if...

  • RE: sql 2k set up issues ????

    The only catch with XP is usually with the firewall. If everything you're doing is local to the server (you're not going to connect to the SQL Server install from...

  • RE: SAN Replication

    We are looking into it, but thus far haven't attempted it. I'd be interested in any comments on the subject as well.

  • RE: Find out is SQL Server services are running by TSQL Query

    The undocumented stored procedure xp_servicecontrol only runs local to the SQL Server. By executing it against the remote procedure you could determine if SQL Server was up, but only if...

  • RE: Find out is SQL Server services are running by TSQL Query

    Scripts like these can often be found in the Microsoft TechNet Script Repository. This should work for you:

    List Service Status script

    This gets back a list of...

  • RE: SQL 2005 Cluster + FreeTDS + UnixODBC

    I have GSX server 3.1; my first attempt to build the cluster ended in a complete fiasco: both the quorum and shared data disks got trashed when I tried to...

  • RE: Local Groups in Cluster

    The heartbeat only verifies that the SQL Server can be connected to. It doesn't handle keeping local groups in sync. Nothing is responsible for doing so within the operating system.

    On...

  • RE: Picking Service Accounts

    The Network Service account is supposed to run with less privileges than System on the local server. However, when it has to go across the network, it effectively does as...

  • RE: SQL Profiler - Host Name Location?

    The Access version used in that article was Access 2000. When setting up a new connection via the DSN is when you get that dialog box (provided the connection doesn't...

  • RE: Setting up a Login

    *waps himself for not reading closer*

    You said you are set up for Mixed Mode. If you recently changed the setting, the SQL Server will need to be restarted for the...

  • RE: Group permission assigning

    In Windows NT/2000/XP/2003, when a user logs on, a security token is generated for the user. This contains the information on the user's security group memberships. This token is only...

  • RE: SQL 2005 Cluster + FreeTDS + UnixODBC

    You should still be able to connect to the SQL Server using that setup if you've made successful connections to SQL Server 7.0 and 2000 servers. One of the things...

  • RE: sql 2005 encryption --- or where do I put that key?

    Key escrow is a problem, like you describe. If you create the database master key it can handle the key escrow for you, however, there is the security trade-off you've...

  • RE: Question of the Day for 30 May 2006

    A few of us help out QAing the Questions of the Day when we can. Lately I've been slammed at work and home so I haven't been able to. It...

Viewing 15 posts - 2,101 through 2,115 (of 6,105 total)