Forum Replies Created

Viewing 15 posts - 16 through 30 (of 54 total)

  • RE: any recommendations for 70-450?

    We are also trying to find training materials for the 70-450 exam. Apparently MS Press does not have any training kits yet...any idea if there is one in the making?

    Thanks!

  • RE: Export data automation

    You can create an SSIS package to export the data out of the database and then schedule that SSIS package within a job. Hope this helps!

  • RE: Collation issue with multiple dbs

    Thank you for the response...and yes they require case sensitivity..augh!

    I was also wondering if there are any known issues with having two instances in a clustered environment (active/ passive)?...

  • RE: ASPState having lots of waits on locks

    I am having a similar issue...we installed Project Server 2007 last month and the 'DeleteExpiredSessions' job that came along with it runs every minute. We've noticed that our CPU utilization...

  • RE: Merging rows in a table

    Thanks Ken...this is working. I ran the query after creating the function and it ran for over 2 hours until I stopped it, but it is working for the records...

  • RE: Merging rows in a table

    Thanks, but not working - I still can't get all the comments into one record. I'm not that good at tsql and I can't seem to get it right. Do...

  • RE: Datetime field

    Thanks! I can work with this and get what I need.

  • RE: SQL Pass Summit 2007

    Ok- I think I understand now. The dates on the form are for registration only and price during those time periods. Sorry about the confusion.

  • RE: SQL Pass Summit 2007

    Thanks for the reply Steve. I've printed off this form, but there is no where on the form to check off that you would like to attend the conference on...

  • RE: query licensing information

    Think you can use this query to get what you need.

    select SERVERPROPERTY('LicenseType'), SERVERPROPERTY('NumLicenses')

  • RE: Simple Script to Backup Database

    You can use what Aaron has posted as your first step in your backup job and use this script as the second step to clean up old backups. This one...

  • RE: how to run .exe from job scheduling

    Have you tried selecting (type - operating system command) cmdEXEC and in the command window put just "C:\Project.exe" ? I think that might work.

  • RE: Indexdefrag for all tables in the database

    I had the same problem with multiple owners in one database. I replaced the following statement:

     

    DECLARE tables CURSOR FOR

    SELECT TABLE_NAME

    FROM INFORMATION_SCHEMA.TABLES

    WHERE TABLE_TYPE = 'BASE TABLE'

     

    With this and it worked great:

     

    DECLARE...

  • RE: Change table owners

    Thanks a lot. I just tried it and it works great!

  • RE: backup script

    I'm still having some trouble with my backups. I know I can't keep multiple days using a backup device, but shouldn't I be able to script it? I'm using this...

Viewing 15 posts - 16 through 30 (of 54 total)