Forum Replies Created

Viewing 15 posts - 316 through 330 (of 907 total)

  • RE: Transactions/Min or Hr

    I use perfmon and the counter option. To track exactly what you are talking about. I eventually take the perfmon data and place it into SQL Server tables,...

  • RE: Automatic Stored Procedures

    You could create a SQL Server Agent job that runs every so many minutes, where the job runs your SP.

    Gregory Larsen, DBA

    If you looking for SQL Server Examples check out...

  • RE: Database Updates

    How easy is it to use?

    Gregory Larsen, DBA

    If you looking for SQL Server Examples check out my website at http://www.geocities.com/sqlserverexamples

  • RE: Database Updates

    That seems like one possible approach. Does anyone know of any others?

    Gregory Larsen, DBA

    If you looking for SQL Server Examples check out my website at http://www.geocities.com/sqlserverexamples

  • RE: Copy DB to another DB on the same Server?

    The database backup method works great, gets everything and is fairly simple.

    Although there is a couple of things you must consider.

    First using the database backups will...

  • RE: create table

    you are dropping table hhhhhh and creating table hhhhhhh. You might try the same number of h's for both the create and the drop.

    Gregory Larsen, DBA

    If you looking for...

  • RE: Most Recent Date

    I'm not sure exactly what you are looking for. But if you only want to return a single date the max date whether it is CreateDate or DateChgd by...

  • RE: Selected records

    think it goes something like this:

    Select a.col1, a.col2 from table1 a where

    a.col2 = (select top 1 col2 from table1 where a.col1 = col1 order by col2 desc)

    Gregory Larsen, DBA

    If...

  • RE: passwords

    Might look at this KB article to give you and idea on how to keep the passwords in sync with a since server. This KB article deals with moving...

  • RE: Exporting a maintenance plan?

    Ok, now I've had my coffee. Ignore my last post.

    Yes it might be true you can't build the script, although it is really easy to do it...

  • RE: Best Raid configuration

    Sorry about that blank post. Of course you understand raid0 will give you no fault tolerance. Also the raid 5 will only slow down your performance when you...

  • RE: Best Raid configuration

    quote:


    What is the best raid configuration for a data warehouse (90/10 read-write ratio)? Right now we have a compaq SAN and everything...

  • RE: Exporting a maintenance plan?

    What I do is edit my package and if I don't have access directly to the other server, I then say "SAVE AS" and store it as a "Structured Storage...

  • RE: Encryption/Decryption/Hashing software

    Thank you for the information. I'll have to check that out.....

    Gregory Larsen, DBA

    If you looking for SQL Server Examples check out my website at http://www.geocities.com/sqlserverexamples

  • RE: Help!!

    If you have an old full backup of the database prior to creating the table, then you should be able to do the following:

    1) Backup the transaction log.

    2) Backup the...

Viewing 15 posts - 316 through 330 (of 907 total)