Forum Replies Created

Viewing 15 posts - 691 through 705 (of 1,790 total)

  • RE: Just had an interview for a DBA in CT

    Hopefully he was referring to using SSMS and not Transact SQL.

    http://msdn.microsoft.com/en-us/library/ms179401.aspx

  • RE: run restore from .Bat

    No problem. I think his situation is a bit different as the current user was going to be executing the bat file which is why I asked the question. Thanks!

  • RE: MSDB - jobservers - last_run_date and last_run_time

    Ok, I was obviously way to distracted in answering that. Very sorry, thinking you were looking at Backups. Not sure why though... :Whistling: :blush:

  • RE: MSDB - jobservers - last_run_date and last_run_time

    Does this get you what you are looking for?

    select @@servername as ServerName

    , b.name as DatabaseName

    , isnull(str(abs(datediff(HH, getdate(), max(backup_finish_date)))), 999) as HoursSinceLastBackup

    , isnull(convert(char(10), max(backup_finish_date), 101), '01/01/1901') as LastBackupDate

    from

    master.dbo.sysdatabases b...

  • RE: run restore from .Bat

    JKSQL - Glad you got it working.

    Mohit - Can you explain what you mean by that?

  • RE: run restore from .Bat

    Assuming that the permissions are set for whoever is running the bat file to access the .bak file and to restore the database then I would say that yes, it...

  • RE: Status NOT SYNCHRONIZING

    Did you use the a standard merge agent with this configuration? If so, you should be able to configure that at the subscriber to run in continuous mode BUT, I...

  • RE: Status NOT SYNCHRONIZING

    Not using the Web Synchronization so, the information that I gave you might not apply. I will try to poke around a bit and let you know what I find....

  • RE: Status NOT SYNCHRONIZING

    Yes, you would need to do that and you would need to change the job schedule to "Start Automatically when SQL Server Agent Starts" in the Schedule Type dropdown at...

  • RE: Status NOT SYNCHRONIZING

    Where are you looking in Replication Monitor?

    When you look at the details of the merge publication (right click > view details) and then select Action > Merge Agent...

  • RE: Are the posted questions getting worse?

    Alvin Ramard (3/11/2009)


    Roy,

    Given where you're from and where you are nobody will expect you to understand Arkansian on your first exposure.

    🙂

    I'm from upstate NY and needed Bob's explanation as well....

  • RE: Rename Instance

    Mike,

    You appear to have installed this as a named instance. I believe you will have to uninstall / reinstall in order to get the default named instance that you...

  • RE: Can I make this any faster

    Jeff Moden (3/10/2009)


    Ya gotta trust me on this... perfectly up to date stats and indexes just aren't gonna help this one. Try the pre-aggregation I spoke of... you'll be...

  • RE: Can I make this any faster

    The table scan itself may not be bad if it is small but these aren't really table scans but rather multiple executions of that function. Hard to say if that...

  • RE: Tunning Sproc for Web Application

    Nice link Grant!

    Gaganks - Wondering if you would be willing to edit your original post and remove the really long script that is in there and just reference the...

Viewing 15 posts - 691 through 705 (of 1,790 total)