Redian新闻
>
请教一个在stored procedure 里用bcp的问题.
avatar
请教一个在stored procedure 里用bcp的问题.# Database - 数据库
h*j
1
微软此前被曝,正在秘密开发一款风格类似《地平线 零之曙光》的大作,而《极限竞
速 地平线3》的开发商Playground Games也在为他们的新项目招兵买马,同样也是为了
3A级开放世界新作,看来微软的这部新作或将由Playground工作室开发了。
Jonathan Rowe此前曾经是IO的《杀手》系列制作人,如今他跳槽到Playground担任美
术总监,他近日在Twitter上发布消息,寻找一位首席环境艺术师,加入他们的3A新作
开发项目。另外,在Playground工作室官网招聘页面上,也列出了不少职位,比如创意
总监、关卡设计师、动画师、程序员、引擎工程师等等。
如今对于这部神秘新作还未有实质性消息,不过《极限竞速 地平线3》的照片级画面表
现,不知道Playground会带来一款怎样的开放世界作品。
avatar
P*X
2
avatar
S*H
3
exec xp_cmdshell
'bcp "select..... query here" queryout " c:\test.dat"
有个问题就是,实际上double quote 里的query 很长. 现在只能写成个很长的一行.
如果换成 多行, 连编译都通不过.
请问如何 写成多行?
多谢!!!!
avatar
j*n
4
DECLARE @query VARCHAR(max)
SELECT @query = '"select ....'
SELECT @query = @query + 'line 2...'
...
SELECT @query = @query + 'line n "'
btw, do you have to have execute BCP in SP? I doubt it is a good idea...
avatar
S*H
5
thanks
avatar
S*H
6
Any better idea?
the case is : whenever there is Update/Insert on Table A, -->retrieve the
records--> appending the message according to whether it is a Update/Insert-
--> ouput the results into .*.txt file.
thanks!!!!
avatar
B*g
7
create immediate table

Insert-

【在 S**H 的大作中提到】
: Any better idea?
: the case is : whenever there is Update/Insert on Table A, -->retrieve the
: records--> appending the message according to whether it is a Update/Insert-
: --> ouput the results into .*.txt file.
: thanks!!!!

avatar
y*w
8
弄个临时表最简单,调试方便不容易出错。你要形而上学那就玩玩这个,
CREATE TRIGGER [ schema_name . ]trigger_name
ON { table | view }
[ WITH [ ,...n ] ]
{ FOR | AFTER | INSTEAD OF }
******{ [ INSERT ] [ , ] [ UPDATE ] [ , ] [ DELETE ] } ------
[ WITH APPEND ]
[ NOT FOR REPLICATION ]
看标出来的那一行,sql server看来支持multi-event trigger. 你自己去问问google
怎么把他实现出来,因为我也没在sql server上写过这个。 弄好了最好回个贴或站内
我一下怎么做的。

Insert-

【在 S**H 的大作中提到】
: Any better idea?
: the case is : whenever there is Update/Insert on Table A, -->retrieve the
: records--> appending the message according to whether it is a Update/Insert-
: --> ouput the results into .*.txt file.
: thanks!!!!

avatar
j*n
9
Tidal has a SQL event that monitors table changes and it can trigger an
action to fire a job to do something... if your company has that...
相关阅读
logo
联系我们隐私协议©2024 redian.news
Redian新闻
Redian.news刊载任何文章,不代表同意其说法或描述,仅为提供更多信息,也不构成任何建议。文章信息的合法性及真实性由其作者负责,与Redian.news及其运营公司无关。欢迎投稿,如发现稿件侵权,或作者不愿在本网发表文章,请版权拥有者通知本网处理。