Viewing 15 posts - 46 through 60 (of 61 total)
Hi,
is the mdf bigger, or the ldf file?
Can you check you scheduler, if there are some maintenance jobs like index-rebuild? Is there some replication, or mirroring?
What is the result of
dbcc...
March 3, 2016 at 3:28 am
Hi,
if you use replication, you are able to decide, which table, view or something else should be replicated.
If you use logshipping, the entire database will be synchronized.
Kind regards,
Andreas
February 22, 2016 at 11:04 pm
Hi,
the account who started the sql-server / sql-server-agent, has this account rights to the file/folder, or only to the share?
Kind regards,
Andreas
February 17, 2016 at 6:06 am
Jason.Mallory (2/11/2016)
Msg 208, Level 16, State 1, Line 1Invalid object name 'distribution.dbo.MSrepl_errors'.
Hm,
try this please:
USE DISTRIBUTION
GO
SELECT * FROM [distribution].[dbo].[MSrepl_errors] ORDER BY time DESC
Or just search for this object, it must be...
February 11, 2016 at 11:07 pm
Hi,
take a look in the replication monitor. Are there any error or something like that. Is everything fine, or some red "x"?
And take a look at your error from distribution...
February 11, 2016 at 1:48 am
February 9, 2016 at 11:52 pm
Hi,
if you have no access do SSMS, you can try this command in powershell:
SQLCMD -L
You should get a list of sql-server with instance name.
Hope you've the right to execute.
Kind regards,
Andreas
January 26, 2016 at 2:05 am
Welsh Corgi (1/21/2016)
How do I identify an error code and add it to the ignore error property?
Hi,
with this query you can select your error from replication
Please run this query on...
January 22, 2016 at 3:32 am
Please note: 3 year old thread.
January 13, 2016 at 6:19 am
Hi,
could you give us your configuration of your tempDB? If you use only one file for the tempDB, it might by your bottleneck.
Kind regards,
Andreas
January 6, 2016 at 11:06 pm
Hi,
maybe you can use the profiler to scan your activities on the server in the night.
Or just use the dmv, to identify the queries with the most IO / CPU.
I...
January 5, 2016 at 7:22 am
Hi,
just remove the WHERE condition, and watch for your running process. There should something with rebuild, index or?
Or just watch all running process with your SID.
Kind regards,
Andreas
December 8, 2015 at 6:32 am
Hi,
maybe this could help, to decide to cancel the maintenance or to wait until it is finished:
SELECT a.database_id,
a.name,
b.command,
b.percent_complete,
b.start_time,
...
December 7, 2015 at 11:58 pm
Viewing 15 posts - 46 through 60 (of 61 total)