Forum Replies Created

Viewing 15 posts - 3,766 through 3,780 (of 7,429 total)

  • RE: Can't make SQL 2K Groups work

    I am a bit confused here

    4. Under "EM >Security >Logins" I create the NT login "<SQLServerName>\SQLUsers" and grant that group "sa" equivalence.

    Are you saying you created a Group in SQL...

  • RE: Replication Vs Triggers

    I think your ISP will not guarantee the replication. Personally the more control you have the better as they will generally guarantee uptime and backups, no more.

    Trigger are simple and...

  • RE: How to combine file group

    ALso, are you seperating tables into individual filegroups or is it one table spanning multiple filegroups. If the later you just have to run DBCC SHRINKFILE with the EMPTYFILE option...

  • RE: Create an Empty Database from Original Database

    One option you have as long as you are sure the encrypted items do not use the 3 or 4 part name to reference objects (server.db.owner.object or db.owner.object) is this....

  • RE: table variable vs #temp table

    You are limited in some of the things you can do with a table variable where a temp table is not as limited. My opinion is use Table variables on...

  • RE: Weird Behavior in SET ROWCOUNT with variables

    Just build the entire string including the declares within the Dynamic SQL string. It will build them in the same scope then.

    Ex.

    Won't work

    DECLARE @int int

    SET @int = 5

    EXEC('SELECT @int')

    Will work

    EXEC('DECLARE...

  • RE: Resize (shrink) a SQL Server 6.5 data device

    Unfortunately as I remember you cannot shirnk the data. However restores on SQL 6.5 are such a pain I suggest bringing up a new server for SQL 7 and use...

  • RE: SQL process Blocking problme

    Review the process that are specifically causing the blocking. You have to determine what needs to be fixed. Could be adding indexes, rewriting queries, or maintainence on a db. But...

  • RE: Failed SQL2K master mainteinance plan, BCAKUP LOG

    Yes all changes to master are considered critical and you cannot leave the DB offline to recover additional backups to master so Full Backup is all that is supported with...

  • RE: How to Calculate Time for datetime datatype ?

    Also try these 2 (sorry I rolled into one but gives 2 output)

    First output column is houtrs expressed as total hours and hundredths of an hour and will span days....

  • RE: Creating Email Trigger

    You also have the option of using CDOs AND CDONTs to send via SMTP. Or better to cut down on contention and other issues write message to a table and...

  • RE: simple question

    Both are about the same. Except two can run a suboptimal plan many times in a Stored Procedure and the first can result in locking issues with the source table....

  • RE: General Setup Best Practice

    Steve specifically why would you not use the 127.0.0.1 or localhost as you are talking most likely having the connection string in a session or app variable (I prefer app...

  • RE: Can't restart SQL Server in single user mode

    Sounds right, if you get a lot of feed on the command prompt window and the cursor does not return. However, use QA to attach. EM I do believe does...

  • RE: DBREINDEX and transaction logs

    Try using DBCC INDEXDEFRAG, I believe that is not logged where DBREINDEX is.

Viewing 15 posts - 3,766 through 3,780 (of 7,429 total)