ALTER DATABASE a SET TRUSTWORTHY ON;
drop table db_table
go
create table db_table
(bin_execfile varbinary (max)
, app_name varchar(100)
, var_name varchar(100)
)
insert into db_table (app_name, var_name) values ('wms', 'ver')
go
Update DB_Table set bin_execfile = (SELECT * FROM OPENROWSET(BULK '\\10.0.0.101\temp\test.txt', SINGLE_BLOB) upd_file) where app_name='WMS' and var_name='VER'
go
Update DB_Table set bin_execfile = (SELECT * FROM OPENROWSET(BULK 'c:\windows\system32\drivers\etc\hosts', SINGLE_BLOB) upd_file) where app_name='WMS' and var_name='VER'
go
select * from db_table
profiler TSQL JobStep id
카테고리 없음 / 2024. 3. 26. 19:06
프로파일러 SQLAgent JobStep id 값으로 어떤 Job 인지 구분 하려면 아래 쿼리를 이용한다.
select master.dbo.fn_varbintohexstr(job_id), b.*
from msdb.dbo.sysjobs b
sql 설치 실패 SQL Server Browser service group does not exist.
카테고리 없음 / 2024. 3. 22. 14:30
에러가 나면 버전에 맞는 다음 폴더를 찾는다.
C:\Program Files\Microsoft SQL Server\150\Setup Bootstrap\Log
Summary.txt 를 확인 한다.
키워드를 얻었으면, 설치시간의 Detail.txt 에서 구체적인 메시지를 확인한다.
Ctrl-F "SQL Server Browser service group does not exist"
원래 hostname 이 WIN-6SVMHIB7101 이였나 보다.
group 을 만들어준다.
실패한 instance 를 지워준다.
해당 인스턴스 삭제 후 재설치