728x90

https://technet.microsoft.com/ko-kr/library/bb838723(office.12).aspx

728x90
728x90

DECLARE @spName NVARCHAR(MAX)
 
SET @spName = 'sp_syspolicy_purge_history' -- 해당 프로그시명을 입력
 
SELECT
 
             S.name AS JobName,
    A.name AS SP_Name ,
              CONVERT(NVARCHAR(10), B.step_id) + ' 단계' AS Step

FROM msdb.dbo.sysjobs A
INNER JOIN msdb.dbo.sysjobsteps B
ON A.job_id = B.job_id  and command like '%' + @spName + '%'
INNER JOIN [msdb].[dbo].[sysjobs] S
ON A.job_id = S.job_id

728x90

'IT이야기 > MS-SQL' 카테고리의 다른 글

SQL Server 트랜잭션 로그 읽기  (0) 2016.06.29
SQL Server 상태 모니터링  (0) 2015.09.02
Instant SQL Formatter  (0) 2015.09.02
MS-SQL 원격 테이블 조회 간단 정리  (0) 2015.09.02
SPGen-Stored Procedure code Generation tool  (0) 2015.09.02
728x90

SQL Query를 보기 좋게 자동으로 표기 해주네요.

유용할 듯... 저처럼 무개념 쿼리는 굿~~~

http://www.dpriver.com/pp/sqlformat.htm

728x90
728x90

SELECT * FROM

OPENROWSET

(

'SQLOLEDB' ,

'IP , PORT ' ; 'ID' ; 'PW' ,

'SELECT * FROM 원격DB명.소유자.테이블명'

)

 

728x90
728x90

http://lattice-spgen-stored-procedure-generator.en.softonic.com/download?ex=SWH-1608.7

728x90
728x90
select replace(convert(varchar,convert(money, 1000000 ),1),'.00',space(0) ) as total

 

 

728x90
728x90

다운로드 URL

https://borntolearn.mslearn.net/certification/m/certgallery/372293/download

 

 

728x90
728x90

1.점포정리 및 초반 공략

http://blog.naver.com/kjloveia01?Redirect=Log&logNo=220446638765

2.돈을 벌어보자

http://blog.naver.com/kjloveia01?Redirect=Log&logNo=220446638765

3.인재관리요령

http://blog.naver.com/kjloveia01?Redirect=Log&logNo=220446638765

4.캐릿 리셋 돈벌기 추가본

http://blog.naver.com/kjloveia01?Redirect=Log&logNo=220446638765

 

다시쓰는 모두의 경영 마스터본

1.점포 마스터하기

http://blog.naver.com/kjloveia01?Redirect=Log&logNo=220446638765

2.매출액 초간단 정리

http://blog.naver.com/kjloveia01?Redirect=Log&logNo=220446638765

3.인재시장을 마스터 하자

http://blog.naver.com/kjloveia01?Redirect=Log&logNo=220446638765

4.인재시장 오류 수정

http://blog.naver.com/kjloveia01?Redirect=Log&logNo=220446638765

5.인재양성하기 중심적으로 교육하기

http://blog.naver.com/kjloveia01?Redirect=Log&logNo=220446638765

6.진행결과

http://blog.naver.com/kjloveia01?Redirect=Log&logNo=220446638765

 

728x90
728x90

참고 - URL

https://technet.microsoft.com/ko-kr/library/gg398069(v=ocs.15).aspx

728x90
728x90

CU 설치 시, 아래 박스안의 오류가 발생 되었다.

해결 방법

제어판>방화벽>Windows 방화벽을 통해 프로그램 또는 기능 허용

Windows Management Instrumentation(WMI) 체크

 

Install-CsDatabase : Command execution failed: Cannot determine where to instal
l database files because Windows Management Instrumentation on the database ser
ver is unavailable from your computer or user account. To continue, you can res
olve this issue, or you can specify where you want to install the files.
At line:1 char:1
+ Install-CsDatabase -ConfiguredDatabases -SqlServerFqdn be01.site1.mani4u.com

 ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
~~~
    + CategoryInfo          : InvalidOperation: (:) [Install-CsDatabase], Depl
   oymentException
    + FullyQualifiedErrorId : ProcessingFailed,Microsoft.Rtc.Management.Deploy
   ment.InstallDatabaseCmdlet 

 

 

참조

http://www.wardvissers.nl/2011/01/05/microsoft-lync-error-microsoft-rtc-management-deployment-deploymentexception-cannot-determine-where-to-install-database-files-because-windows-management-instrumentation-on-the-datab/

Step 1:

  1. Click Start, and then click Control Panel.
  2. Open the Windows Firewall program.
  3. Click Change Settings to the Windows Firewall Settings dialog box.
  4. Verify that Windows Firewall is turned on, and then click the Exceptions tab.
  5. In the To enable an exception, select its check box window, scroll to locate the Remote Administration Program or Port exception.
  6. Make sure that the Remote Administration Program or Port exception is selected.
  7. Click OK to close the Windows Firewall Settings dialog box.

                image

Step 2: I had named the pool different than the server name, so I needed to add an A record or CNAME Record to DNS to get past.

 

 

끝.

728x90

+ Recent posts