BCP 일괄 가 져 오기 내 보 내기
3567 단어 가 져 오기 내 보 내기
bcp "select * from DbName.dbo.TableName" queryout E:\test.sql -S . -U sa -P1 -c
exec master..xp_cmdshell 'bcp DbName.dbo.TableName in E:\test.sql -c -T'
2. 권한 설정
/*MSsql2005 xp_cmdshell
,sql server2005 ,xp_cmdshell ( ), ,
*/
--
EXEC sp_configure 'show advanced options', 1
GO
--
RECONFIGURE
GO
-- xp_cmdshell
EXEC sp_configure 'xp_cmdshell', 1
GO
--
RECONFIGURE
GO
-- xp_cmdshell
Exec xp_cmdshell 'query user'
GO
-- , xp_cmdshell ( )
--
EXEC sp_configure 'show advanced options', 1
GO
--
RECONFIGURE
GO
-- xp_cmdshell
EXEC sp_configure 'xp_cmdshell', 0
GO
--
RECONFIGURE
GO