Forum Replies Created

Viewing 15 posts - 5,761 through 5,775 (of 6,395 total)

  • RE: New Version of sqlserver

    2012 is still in the release candidate stages, no RTM has yet to be released.

    The latest official version is 2008 R2, if you can wait till July then 2012 should...

  • RE: Kerberos Hell

    what is the serverity and state of the 18456 error, that will then all depend on the action/s to take

  • RE: Logshipping Configured or not

    if it gives you the information you need then its fine

  • RE: Logshipping Configured or not

    yeah that will work, but in the case you will want it to be IS NOT NULL as I have just run this on my test machine with NO logshipping...

  • RE: Logshipping Configured or not

    you will want something like this

    select

    LP.Primary_Database as LogshippingDB,

    '' AS NotLogshippingDB

    from

    msdb..log_shipping_monitor_primary lp

    union

    select

    '',

    sd.Name

    FROM

    sys.databases SD

    LEFT OUTER JOIN

    msdb.dbo.log_shipping_monitor_primary lp

    ON

    sd.name = lp.primary_database

    WHERE

    lp.primary_database is null

  • RE: Logshipping Configured or not

    your syntax is wrong for the whole query

    you need the 3 part identifyer

    msdb.dbo.log_shipping_monitor_primary

    when you correct it you will get

    Msg 4104, Level 16, State 1, Line 7

    The multi-part identifier "dbid.SD"...

  • RE: London Job Market

    put your CV up on the job boards like totaljobs.com/jobsite.co.uk/monster.co.uk/contractjobs.com, you will get plenty of agencies contacting you.

    i've just started a new role and i'm still constantly being called by...

  • RE: Logshipping Configured or not

    as the primary table contains DB's which are logshipping configured you wuold just tie it back to sys databases where its not in the primary table

  • RE: some scripts

    the script zip attachment has been removed by the OP, i managed to get a copy of it before it was removed

  • RE: Logshipping Configured or not

    this url will help http://msdn.microsoft.com/en-us/library/ms175106.aspx

    the table your looking for is log_shipping_monitor_primary which details all the source db's which are involved in logshipping

  • RE: logshippin port number

    the information on that is in the wiki link.

    port 445 is the port used for file copy's so that both nodes can copy TRN files

  • RE: need to copy 100 tables from 1 server/db to another server/db..

    you could use, SSIS, Import Export Data Wizard, BCP.

    Quickest would be the wizard but if you want to do fancy things with the data on the copy then SSIS

  • RE: Deadlock and WMI alerts

    believe I have resolved it

    i created a deadlock and it didnt fire the alert

    and i was still trying to fire the same deadlock alert, but I had to create a...

  • RE: SQL monitoring tool

    you have to allow the other servers internet connectivity

    we have DEV/TEST servers here in the UK locally and PROD servers in the US managed by a 3rd party.

    I'm a fan...

  • RE: Use C# in SQL Server 2008

    we connect to a 3rd party ftp site, download a zip file using a http connection manager

    we then have a C# script which checks the unzipping directory and clears it...

Viewing 15 posts - 5,761 through 5,775 (of 6,395 total)