Forum Replies Created

Viewing 15 posts - 481 through 495 (of 692 total)

  • RE: IMCEDAs LiteSpeed backup software

    I've been testing with it, and you're right, it seems too good to be true.  BUT, with everything that I hit it with, it worked exactly as advertised!

    I don't yet...

  • RE: transaction logs grow to much

    Transactional : online transactions.  The users are directly making changes to the data.

    Batch updated : users don't make changes to the database.  They only read it.  Updates are handled by...

  • RE: transaction logs grow to much

    Nope.  If you need point in time recovery, you MUST take transaction log backups.

    How many databases do you have on your server?  How big?  How active?

    If transaction log backups...

  • RE: granting permissions on group of tables

    This should work for you.  If you have a lot of users, you can create a cursor like the one I have here for the table name.  Otherwise, just plug...

  • RE: deleting duplicate accounts between tables

    This should do it.

    DELETE Database2.dbo.TABLE2

     FROM Database2.dbo.TABLE2 t2

     INNER JOIN Database1.dbo.TABLE1 t1

      ON t1.Account_number = t2.Account_number

    Steve

  • RE: transaction logs grow to much

    John,

    Assuming that these are transactional databases, and that the growth is due to users' transactions:

    If these are production databases, you should schedule transaction log backups frequently enough to keep the...

  • RE: Database and Log backup

    You've told us that the space allocated for the db is 10GB with 2.3GB used.  However, you didn't say anything about the transaction log.  If the data size is 2.3GB...

  • RE: Retrieving Bulk Data

    You may want to take a look at the condition of your index as well, by running dbcc showcontig.

    Steve

  • RE: setting password on a specific database

    About the only thing you can do is encrypt the data.  The system administrator (sa) requires full access to all objects within SQL server to be able to do his/her...

  • RE: Database and Log backup

    The differences in sizes of your transaction log backups are simply a result of heavier usage.  You say that the database is used between 8am and 4pm (8 hours) and...

  • RE: Create A Stored Proc without it parsing

    I stand corrected.  I was thinking of stored procedures instead of tables.

    I think the only way to store your procedures in SQL would be to create the tables.  Are you...

  • RE: finding the number of transactions

    If you know in advance that you'll want that information, you could run profiler.  Otherwise, you would need a transaction log viewer, such as Lumigent's Log Explorer.

    Steve

  • RE: Create A Stored Proc without it parsing

    Shouldn't be any problem.  It just can't set up dependencies if an object doesn't exist yet.  Once the tables are there, it should work ok.  Then, if you want to...

  • RE: SEM not showing databases or management stuff

    I'd reinstall SQL before doing a complete rebuild of the server.

    Steve

  • RE: SEM not showing databases or management stuff

    I'm kind of grasping at straws here, but have you tried running dbcc checkdb on your master and msdb databases?

    Steve

Viewing 15 posts - 481 through 495 (of 692 total)