Forum Replies Created

Viewing 15 posts - 106 through 120 (of 309 total)

  • RE: Read Committed Snapshot.

    We use SolarWinds DPA tool to monitor our environment. Everyday I see alerts regarding the blocking. For example, Query 1 gets executed 3700 times and has 17 hours of blocking...

  • RE: Having issues with Log Shipping

    Disabled the log shipping job and recreated it and now it's working. I have no idea why it wasn't working. Didn't take any extra steps. Recreated the same way, I...

  • RE: Having issues with Log Shipping

    Perry Whittle (3/5/2015)


    on the 2 servers that are not working as expected please run the following query.

    select differential_base_lsn, differential_base_time

    from sys.master_files

    where database_id = DB_ID('yourdb')

    and type = 0

    group by differential_base_lsn, differential_base_time

    If the...

  • RE: Having issues with Log Shipping

    I don't know what I am missing, but Log shipping is working between instances in the same server, but it is not working between 2 different servers.

    Little explanation of what...

  • RE: Changing DB Mode from Single user to Multi user.

    This is what I did.

    I logged in as "SA"

    Ran this command

    SELECT sd.[name], sp.spid, sp.login_time, sp.loginame

    FROM sysprocesses sp

    INNER JOIN sysdatabases sd on sp.dbid = sd.dbid

    WHERE sd.[name] =...

  • RE: Changing DB Mode from Single user to Multi user.

    Followed everything in this thread recommended by everyone, but nothing seems to be working.

    Ran this command which brought 0 result

    SELECT sd.[name], sp.spid, sp.login_time, sp.loginame

    FROM sysprocesses sp

    INNER JOIN sysdatabases...

  • RE: Having issues with Log Shipping

    Perry Whittle (3/3/2015)


    any luck?

    Not yet

  • RE: Having issues with Log Shipping

    Perry Whittle (3/3/2015)


    even though the restore job is successful, check the step outputs, you'll likely see errors there saying "log file skipped blah blah blah"

    Nope. I don't see any error...

  • RE: Having issues with Log Shipping

    It was just permission issues. That problem has been fixed.

    New problem:

    I created a dummy table in the DB (Primary Server) last night. I scheduled it to run every 15 minutes....

  • RE: Having issues with Log Shipping

    New Born DBA (3/2/2015)


    Perry Whittle (3/2/2015)


    You must remove the primary database from any log backup maintenance plans or jobs. The log shipping plan will create a dedicated agent job that...

  • RE: Having issues with Log Shipping

    Perry Whittle (3/2/2015)


    You must remove the primary database from any log backup maintenance plans or jobs. The log shipping plan will create a dedicated agent job that will schedule the...

  • RE: Having issues with Log Shipping

    Perry Whittle (3/2/2015)


    New Born DBA (3/2/2015)


    Restored with recovery

    The secondary database must be restored with either NORECOVERY or STANDBY.

    1 more question I have regarding the log shipping.

    This is how the primary...

  • RE: Having issues with Log Shipping

    Let me try that and if I run into any issues, I will just reply to this thread again.

  • RE: Having issues with Log Shipping

    Restored with recovery

  • RE: Create new table from multiple table

    Already created a view from tables

    Create View [dbo].[HistInfo] AS

    SELECT [UniqueID]

    ,[Company]

    ,[CustID]

    ,[CustomerName]

    ...

Viewing 15 posts - 106 through 120 (of 309 total)