如何获取复制代理的详细日志

1.
In SQL Enterprise Manager, click the Replication Monitor Node to open the Replication Monitor on the server configured as the Distributor.2.Click Open on the Publishers node.3.Click the publisher that has the publication that has the problem.4.Click Publication.5.
In the right-hand pane of SQL Enterprise Manager is a list of the agents related to the publication. You see the Snapshot Agent, Log Reader Agent and the Push/Pull Subscription Agent.6.Identify the agent for which you need to set up output logging. 7.Right-click the Replication Agent you identified in step 6, and then click Agent Properties. 8.Click the Steps tab, and then edit the Run Agent step. 9.At the end of the string under command, add:

-Output C:TempOUTPUTFILE.txt -Outputverboselevel [0|1|2]

Specify either 0, 1, or 2 after the -Outputverboselevel parameter. 10.Click OK to save the changes, and then close the Edit Job Step dialog box. 11.Click OK to save the changes, and then close the Replication Agent Properties dialog box. If the agent is set to run continuously, stop and restart the Replication Agent so that SQL Server logs the messages to the log file specified in step 9. If the file already exists, the agent appends the output to the file.
参考:http://support.microsoft.com/?id=312292

时间: 2024-10-16 05:12:40

如何获取复制代理的详细日志的相关文章

WordPress获取指定时间内评论最多日志实例

WordPress功能函数query_post()的一种高级用法,就是获取本周或当月或最近30天评论最多的一定数量的日志. 下面要讲的是,通过使用query_posts()函数来获取本周.本月或最近30天内容评论最多的日志. WordPress所有时间内评论最多日志 首先,让我们来看看获取所有时间内评论最多日志的代码:  代码如下 复制代码 <ul> <?php query_posts('post_type=post&posts_per_page=10&orderby=c

如何获取访问者IP地址详细信息

利用qq的接口程序 <script type=text/网页特效 src=http://fw.qq.com/ipaddress charset="gb2312"></script> <script type=text/网页特效> document.write(ipdata.join(' ')); </script> 202.105.128.73 广东省 深圳市 <script type=text/javascript src=htt

tomcat log4j error-tomcat 启动报错,没有详细日志

问题描述 tomcat 启动报错,没有详细日志 tomcat 启动报错,没有详细日志 16-04-12 16:21:54 INFO Http11Protocol:188 - Initializing Coyote HTTP/1.1 on port 8080 16-04-12 16:21:54 INFO Catalina:536 - Initialization processed in 265 ms 16-04-12 16:21:54 INFO StandardService:511 - Sta

Android 操作系统获取Root权限 原理详细解析_Android

android root权限破解分析 许多机友新购来的Android机器没有破解过Root权限,无法使用一些需要高权限的软件,以及进行一些高权限的操作,其实破解手机Root权限是比较简单及安全的,破解Root权限的原理就是在手机的/system/bin/或/system/xbin/目录下放置一个可执行文件"su",这是一个二进制文件,相当于电脑上的exe文件,仅仅在系统中置入这个"su"文件是不会给手机的软件或硬件造成任何故障. 下面的代码是android系统原版的

Android实现短信验证码获取自动填写功能(详细版)_Android

现在的应用在注册登录或者修改密码中都用到了短信验证码,那在android中是如何实现获取短信验证码并自动填写的呢? 首先,需要要在manifest中注册接收和读取短信的权限:  <uses-permission android:name="android.permission.RECEIVE_SMS"></uses-permission> <uses-permission android:name="android.permission.READ

通过xentrace、xentrace_format和xenalyze获取Xen执行的详细参数信息

在Xen进行测试或调优的时候,需要进行比较底层的细节分析(比如统计VMExit的频率.VMExit的类型.VMExit消耗了多少CPU时间),这时就可以使用xentrace这个工具了. xentrace是在xen源代码中自带的一个工具,在"make tools"编译时就会默认生成.xentrace生成的数据是二进制的格式,人的肉眼不能直接读取,可以使用xentrace_format转换为凡人能够直接读取的信息,xentrace_format解析后的数据信息量一般也比较大,可能还需要自己

linux下安装Squid代理的详细配置教程_服务器其它

1.如果系统中还没有装squid,按以下顺序输入命令后即可完成安装 # wget http://www.squid-cache.org/Versions/v3/3.0/squid-3.0.STABLE18.tar.gz //下载Squid代理安装包 # tar -zxvf squid-3.0.STABLE18.tar.gz //解压Squid安装包 # cd squid-3.0.STABLE18 # ./configure --prefix=/usr/local/squid --sysconfd

Android实现短信验证码获取自动填写功能(详细版)

现在的应用在注册登录或者修改密码中都用到了短信验证码,那在android中是如何实现获取短信验证码并自动填写的呢? 首先,需要要在manifest中注册接收和读取短信的权限: <uses-permission android:name="android.permission.RECEIVE_SMS"></uses-permission> <uses-permission android:name="android.permission.READ_

Android 操作系统获取Root权限 原理详细解析

android root权限破解分析 许多机友新购来的Android机器没有破解过Root权限,无法使用一些需要高权限的软件,以及进行一些高权限的操作,其实破解手机Root权限是比较简单及安全的,破解Root权限的原理就是在手机的/system/bin/或/system/xbin/目录下放置一个可执行文件"su",这是一个二进制文件,相当于电脑上的exe文件,仅仅在系统中置入这个"su"文件是不会给手机的软件或硬件造成任何故障. 下面的代码是android系统原版的