달력

5

« 2024/5 »

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31

Dim oAPI, oBag
Set oAPI = CreateObject("MOM.ScriptAPI")
Set oBag = oAPI.CreatePropertyBag()

Dim dbcon, strCon
Set dbcon = createobject("adodb.connection")
strCon = "provider=sqloledb;data source=<DB Server IP>;user id=<ID>;password=<Password>;initial catalog=<DB Name>"

dbcon.open strCon
strSQL ="<SQL Query>"
Set Result = dbcon.execute(strSQL)

Do while not Result.eof
strROW1 = Result(0)
strROW2 = Result(1)
strROW3 = Result(2)
strROW4 = Result(3)
strROW5 = Result(4)
....

Result.movenext
loop

set Result = NOTHING
dbcon.close

Call oBag.AddValue("Object",strROW1)
Call oBag.AddValue("Counter","strROW2)
Call oBag.AddValue("Instance",strROW3)
Call oBag.AddValue("PerfValue",strROW4)
Call oAPI.Return(oBag)

============================================================================

$Data/Property[@Name='Object']$
$Data/Property[@Name='Counter']$
$Data/Property[@Name='Instance']$
$Data/Property[@Name='PerfValue']$

:
Posted by 커널64

http://www.microsoft.com/downloads/details.aspx?FamilyID=4a41a8be-0a37-4bd2-b5b1-026468b317fb&displaylang=en

지원 OS (Linux, UNIX)
AIX 5.3 (Power), 6.1 (Power)
HP-UX 11iv2 (IA64/PA-RISC), 11iv3 (IA64/PA-RISC)
Red Hat Enterprise Server 4 (x86/x64), 5 (x86/x64)
Solaris 8 (SPARC), 9 (SPARC), 10 (SPARC/x86)
SUSE Linux Enterprise Server 9 (x86), 10 (x86/x64), 11 (x86/x64)

:
Posted by 커널64

보고 서버의 ReportServer\bin\ReportingServicesService.exe.config 파일에 다음 항목 추가

<dependentAssembly>
<assemblyIdentity name="Microsoft.ReportingServices.ProcessingCore" publicKeyToken="89845dcd8080cc91" culture="neutral" />
<bindingRedirect oldVersion="9.0.242.0" newVersion="10.0.0.0" />
</dependentAssembly>
<dependentAssembly xmlns="urn:schemas-microsoft-com:asm.v1">
<assemblyIdentity name="Microsoft.ReportingServices.ProcessingCore" publicKeyToken="89845dcd8080cc91" culture="neutral" />
<bindingRedirect oldVersion="9.0.242.0" newVersion="10.0.0.0" />
</dependentAssembly>

http://support.microsoft.com/kb/972821/en-us

:
Posted by 커널64

Service Level Tracking reporting
서비스 수준 모니터링을 위한 보고서 추가. 보고서를 생성하기 전에 먼저 모니터링할 개체를 생성하여야 한다.
서비스 수준을 모니터링할 개체를 생성하면 이후에 수집되는 데이터를 기준으로 보고서가 생성되는 것이 아니라 기존에 수집된 상태와 성능 정보를 이용해 보고서를 생성하게 된다.

관리팩에 보고서 저장
즐겨찾기에만 추가가 가능했던 보고서를 이제 관리팩에 저장할 수 있게 된다. 이 기능을 통해 사용자 또는 관리자가 생성한 보고서를 모든 사용자가 공유할 수 있게 된다. 관리팩에 저장된 보고서는 SSRS를 통해 자동으로 보고 서버에 배포되며 삭제 기능도 포함한다.

MP Authoring Console에 보고서 제작 기능 포함
Authoring Console에 보고서 제작을 위한 Reporting 탭이 추가되었으며 보고서 제작을 위한 모든 기능을 제공한다.

보고서의 개체 선택의 클래스 필터링 기능 추가
Add Objects와 Add Group 버튼 옆의 Options 버튼을 클릭해 특정 클래스만을 검색하도록 할 수 있는 기능이 추가되었다.

성능 규칙에서 동일한 이름을 가지는 여러 규칙을 구분하기 위한 향상된 검색 기능 추가
성능 수집 규칙 뿐만아니라 성능 카운터로도 검색이 가능해졌다.

Most Common Events 보고서에 다중으로 선택할 수 있는 파라미터 기능 추가 (Event Log, Source, Type)

:
Posted by 커널64