a*5
2 楼
现招聘人在国外,对网络销售感兴趣的朋
友来联合销售,我们主要销售的是吉祥物。欢迎广大留学生来联系, 有ebay老账号者优
先。
具体要求如下:
1必须人在国外,
2本公司的产品全部对外国,不做国内代理,国内朋友谢绝谈判。
3合作者对电脑操作熟练,每天有固定的1-2个小时来处理订单,当地语言不要求太高。
4我们的合作可以供货也可以联合销售,所以请合作者必须有高的信用意识
MSN; s******[email protected]
EMAIL;s******[email protected]
QQ;79575467
友来联合销售,我们主要销售的是吉祥物。欢迎广大留学生来联系, 有ebay老账号者优
先。
具体要求如下:
1必须人在国外,
2本公司的产品全部对外国,不做国内代理,国内朋友谢绝谈判。
3合作者对电脑操作熟练,每天有固定的1-2个小时来处理订单,当地语言不要求太高。
4我们的合作可以供货也可以联合销售,所以请合作者必须有高的信用意识
MSN; s******[email protected]
EMAIL;s******[email protected]
QQ;79575467
b*9
3 楼
是去上海了吧
最近几乎每季必去中国啊
最近几乎每季必去中国啊
s*r
4 楼
好不容易开花了,看上去不错,但是闻了一下差点没熏死,恶臭啊。。。。
这是怎么搞的,还是这种paperwhite水仙就是臭的?以前国内的水仙都很香啊
这是怎么搞的,还是这种paperwhite水仙就是臭的?以前国内的水仙都很香啊
y*o
5 楼
请问这个procedure干什么用的?sql 蝌蚪,读不懂啊~~求高人指点
USE [CFH_ODS]
GO
/****** Object: StoredProcedure [dbo].[DQ_VALIDATE] Script Date: 07/13/
2015 15:08:33 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE PROCEDURE [dbo].[DQ_VALIDATE](@tableID bigint = null, @fldID bigint =
null)
AS
BEGIN
SET NOCOUNT ON
declare @VAL_ID bigint;
--
INSERT INTO DQ_VAL(VAL_START_DT) values(GETDATE());
SELECT @VAL_ID = @@IDENTITY;
DECLARE c CURSOR LOCAL STATIC READ_ONLY FORWARD_ONLY
FOR SELECT TAB_ID FROM DQ_TAB WHERE ISNULL(@tableID, TAB_ID) = TAB_
ID and VAL_FL = 1;
DECLARE @id BIGINT;
OPEN c;
FETCH NEXT FROM c INTO @id;
WHILE @@FETCH_STATUS = 0
BEGIN
EXEC DQ_VALIDATE_TABLE @VAL_ID, @ID;
EXEC DQ_VALIDATE_FIELD @VAL_ID, @ID
FETCH NEXT FROM c INTO @id;
END
CLOSE c;
DEALLOCATE c;
UPDATE DQ_VAL SET VAL_END_DT = GETDATE() WHERE VAL_ID = @VAL_ID;
END
GO
USE [CFH_ODS]
GO
/****** Object: StoredProcedure [dbo].[DQ_VALIDATE] Script Date: 07/13/
2015 15:08:33 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE PROCEDURE [dbo].[DQ_VALIDATE](@tableID bigint = null, @fldID bigint =
null)
AS
BEGIN
SET NOCOUNT ON
declare @VAL_ID bigint;
--
INSERT INTO DQ_VAL(VAL_START_DT) values(GETDATE());
SELECT @VAL_ID = @@IDENTITY;
DECLARE c CURSOR LOCAL STATIC READ_ONLY FORWARD_ONLY
FOR SELECT TAB_ID FROM DQ_TAB WHERE ISNULL(@tableID, TAB_ID) = TAB_
ID and VAL_FL = 1;
DECLARE @id BIGINT;
OPEN c;
FETCH NEXT FROM c INTO @id;
WHILE @@FETCH_STATUS = 0
BEGIN
EXEC DQ_VALIDATE_TABLE @VAL_ID, @ID;
EXEC DQ_VALIDATE_FIELD @VAL_ID, @ID
FETCH NEXT FROM c INTO @id;
END
CLOSE c;
DEALLOCATE c;
UPDATE DQ_VAL SET VAL_END_DT = GETDATE() WHERE VAL_ID = @VAL_ID;
END
GO
c*e
6 楼
新人求助
打算把一老笔记本改装linux
发现网上众多版本
请推荐一简单好使的,而且对众多windows下的流行软件及游戏支持比较好的,多谢!
打算把一老笔记本改装linux
发现网上众多版本
请推荐一简单好使的,而且对众多windows下的流行软件及游戏支持比较好的,多谢!
d*o
7 楼
帮人一个忙
pension/ALM背景
5年经验左右
有兴趣的联系我。
pension/ALM背景
5年经验左右
有兴趣的联系我。
N*C
8 楼
都问些什么方面的东西啊,大方向的,一点都清楚。
有经验的给指点指点,谢拉。
有经验的给指点指点,谢拉。
k*u
9 楼
http://www.woot.com/special.aspx?k=SansaStuff
是不是配套的?
【在 D****e 的大作中提到】
: 麻烦各位推荐一个?
是不是配套的?
【在 D****e 的大作中提到】
: 麻烦各位推荐一个?
m*u
12 楼
stored procedure. it is a kind of object of database.
d*0
14 楼
不是。
【在 k********u 的大作中提到】
: http://www.woot.com/special.aspx?k=SansaStuff
: 是不是配套的?
【在 k********u 的大作中提到】
: http://www.woot.com/special.aspx?k=SansaStuff
: 是不是配套的?
r*n
16 楼
偶们家的也是臭的~~
r*d
17 楼
you arent clear about the syntax or logic.
if former, better to start with something simple.
if latter, ask co worker.
my understanding is that
it DQ_VALIDATE TABLE and fields of the table when table id is passed in,
or all the tables returned from the cursor.
then
it updates start end time to track the DQ process in DQ_VAL(id, VAL_
START_DT, VAL_END_DT )
@fldID is not used.
read DQ_VALIDATE_TABLE may help you understand it better
if former, better to start with something simple.
if latter, ask co worker.
my understanding is that
it DQ_VALIDATE TABLE and fields of the table when table id is passed in,
or all the tables returned from the cursor.
then
it updates start end time to track the DQ process in DQ_VAL(id, VAL_
START_DT, VAL_END_DT )
@fldID is not used.
read DQ_VALIDATE_TABLE may help you understand it better
x*e
22 楼
USE [CFH_ODS]
GO
/****** Object: StoredProcedure [dbo].[DQ_VALIDATE] Script Date: 07/13/
2015 15:08:33 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE PROCEDURE [dbo].[DQ_VALIDATE](@tableID bigint = null, @fldID bigint =
null) -- This proc takes @tablID and @fldID arguments.
-- No idea what this proc does without knowing about the procs it calls, and
all the tables that are involved in the whole process.
AS
BEGIN
SET NOCOUNT ON
declare @VAL_ID bigint; -- Declare an @VAL_ID as bigint
--
INSERT INTO DQ_VAL(VAL_START_DT) values(GETDATE()); -- This table should
have an IDENTITY column.
-- This statement inserts a row with the VAL_START_DT value as the
current timestamp.
SELECT @VAL_ID = @@IDENTITY; -- Get the value for @VAL_ID as the @@
IDENTITY.
DECLARE c CURSOR LOCAL STATIC READ_ONLY FORWARD_ONLY
FOR SELECT TAB_ID FROM DQ_TAB WHERE ISNULL(@tableID, TAB_ID) = TAB_
ID and VAL_FL = 1; -- Declare a cursor for the TAB_ID values from the DQ_TAB
table.
-- You could run this query and find out what values are to
be included. Can improve the performance by modifying the ISNULL.
DECLARE @id BIGINT; -- Declare an @id for looping over the cursor
OPEN c;
FETCH NEXT FROM c INTO @id;
WHILE @@FETCH_STATUS = 0 -- While loop.
BEGIN
EXEC DQ_VALIDATE_TABLE @VAL_ID, @ID; -- Calls two procedures, need to
check what these two would do. Presumably these two procs may also do sth
against the DQ_CAL table.
EXEC DQ_VALIDATE_FIELD @VAL_ID, @ID
FETCH NEXT FROM c INTO @id; -- Repeat with the next @id from the
cursor.
END
-- Loop ends.
CLOSE c;
DEALLOCATE c;
UPDATE DQ_VAL SET VAL_END_DT = GETDATE() WHERE VAL_ID = @VAL_ID; --
Updates the VAL_END_DT value with the current timestamp for the previously
inserted row.
END
GO
=
【在 y********o 的大作中提到】
: 请问这个procedure干什么用的?sql 蝌蚪,读不懂啊~~求高人指点
: USE [CFH_ODS]
: GO
: /****** Object: StoredProcedure [dbo].[DQ_VALIDATE] Script Date: 07/13/
: 2015 15:08:33 ******/
: SET ANSI_NULLS ON
: GO
: SET QUOTED_IDENTIFIER ON
: GO
: CREATE PROCEDURE [dbo].[DQ_VALIDATE](@tableID bigint = null, @fldID bigint =
GO
/****** Object: StoredProcedure [dbo].[DQ_VALIDATE] Script Date: 07/13/
2015 15:08:33 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE PROCEDURE [dbo].[DQ_VALIDATE](@tableID bigint = null, @fldID bigint =
null) -- This proc takes @tablID and @fldID arguments.
-- No idea what this proc does without knowing about the procs it calls, and
all the tables that are involved in the whole process.
AS
BEGIN
SET NOCOUNT ON
declare @VAL_ID bigint; -- Declare an @VAL_ID as bigint
--
INSERT INTO DQ_VAL(VAL_START_DT) values(GETDATE()); -- This table should
have an IDENTITY column.
-- This statement inserts a row with the VAL_START_DT value as the
current timestamp.
SELECT @VAL_ID = @@IDENTITY; -- Get the value for @VAL_ID as the @@
IDENTITY.
DECLARE c CURSOR LOCAL STATIC READ_ONLY FORWARD_ONLY
FOR SELECT TAB_ID FROM DQ_TAB WHERE ISNULL(@tableID, TAB_ID) = TAB_
ID and VAL_FL = 1; -- Declare a cursor for the TAB_ID values from the DQ_TAB
table.
-- You could run this query and find out what values are to
be included. Can improve the performance by modifying the ISNULL.
DECLARE @id BIGINT; -- Declare an @id for looping over the cursor
OPEN c;
FETCH NEXT FROM c INTO @id;
WHILE @@FETCH_STATUS = 0 -- While loop.
BEGIN
EXEC DQ_VALIDATE_TABLE @VAL_ID, @ID; -- Calls two procedures, need to
check what these two would do. Presumably these two procs may also do sth
against the DQ_CAL table.
EXEC DQ_VALIDATE_FIELD @VAL_ID, @ID
FETCH NEXT FROM c INTO @id; -- Repeat with the next @id from the
cursor.
END
-- Loop ends.
CLOSE c;
DEALLOCATE c;
UPDATE DQ_VAL SET VAL_END_DT = GETDATE() WHERE VAL_ID = @VAL_ID; --
Updates the VAL_END_DT value with the current timestamp for the previously
inserted row.
END
GO
=
【在 y********o 的大作中提到】
: 请问这个procedure干什么用的?sql 蝌蚪,读不懂啊~~求高人指点
: USE [CFH_ODS]
: GO
: /****** Object: StoredProcedure [dbo].[DQ_VALIDATE] Script Date: 07/13/
: 2015 15:08:33 ******/
: SET ANSI_NULLS ON
: GO
: SET QUOTED_IDENTIFIER ON
: GO
: CREATE PROCEDURE [dbo].[DQ_VALIDATE](@tableID bigint = null, @fldID bigint =
s*0
28 楼
我买的也是这种,臭的。国内的好香好甜,不知道这个是不是转基因了,不过买的时候
就猜到可能是这个结果了,平时超市里的花也没见到几个香的。。
就猜到可能是这个结果了,平时超市里的花也没见到几个香的。。
d*z
30 楼
据上海目击者报道应该是他们,一般是比较准的,不过有时候也会出差错,SEASON 14的
TAMMY/VICTOR兄妹在日本的目击者报告没有进前三到,但是实际上最终是他们赢了,
TAR到最后几
站时会大量调配DECOY TEAM混淆视听,JOE跟HEIDI很有可能当时也飞到上海去做DECOY
了,因为
有人报告亚裔COUPLE看着在RACE
(spoiler below)
(spoiler below)
(spoiler below)
(spoiler below)
(spoiler below)
(spoiler below)
(spoiler below)
(spoiler below)
(spoiler below)
(spoiler below)
*
S
P
O
I
L
E
R
B
E
L
O
W
*
*
S
P
O
I
L
E
R
B
E
L
O
W
*
*
S
P
O
I
L
E
R
B
E
L
O
W
*
从上海回美国,SFO机场没看到COPS,
上海站的FINISH ORDER
1.COWBOYS
2.MODELS
3.BROS.
4.COPS (eliminated)
【在 y****n 的大作中提到】
: 真的么!!!
: 大开心!!!
: 不过我对gay男兄弟组也很不爽。。。
TAMMY/VICTOR兄妹在日本的目击者报告没有进前三到,但是实际上最终是他们赢了,
TAR到最后几
站时会大量调配DECOY TEAM混淆视听,JOE跟HEIDI很有可能当时也飞到上海去做DECOY
了,因为
有人报告亚裔COUPLE看着在RACE
(spoiler below)
(spoiler below)
(spoiler below)
(spoiler below)
(spoiler below)
(spoiler below)
(spoiler below)
(spoiler below)
(spoiler below)
(spoiler below)
*
S
P
O
I
L
E
R
B
E
L
O
W
*
*
S
P
O
I
L
E
R
B
E
L
O
W
*
*
S
P
O
I
L
E
R
B
E
L
O
W
*
从上海回美国,SFO机场没看到COPS,
上海站的FINISH ORDER
1.COWBOYS
2.MODELS
3.BROS.
4.COPS (eliminated)
【在 y****n 的大作中提到】
: 真的么!!!
: 大开心!!!
: 不过我对gay男兄弟组也很不爽。。。
m*z
31 楼
哈哈那放在外面看only
x*e
36 楼
要买 chinese paperwhite 才行,我家的刚开,就像国内的淡淡的香味儿,但没有国内
水仙那么大的球茎。
水仙那么大的球茎。
b*r
38 楼
我在Ranch99 结帐的地方拿的水仙球不知道是香的还是臭的?
另外养水仙就方石头水,几天换次水?要加肥料吗?
另外养水仙就方石头水,几天换次水?要加肥料吗?
i*r
44 楼
Any Linux + virtual machine + windows guest VM ...
相关阅读
The power of core companies(zz)请教:俺的背景和Finance Ph.D的申请Re: 请教大侠,tax方向的master program如何查找?在business school or law school?Re: [转载] 综述:“美国典范”光环顿失(muzi) /Accounting Debacles有个问题很困惑,希望大家来看看瑞士人寿告别中国 留下一串问号Re: [转载] Re: 经济管理学院讲席/特聘教授情况简介Re: ranking in General Management of MBA?Re: What does "Full P&L accounting" mean? /My two centsRe: any webiset for resume writing?版务公告: 本版规则Re: 请教!关于IE(industry engineering)Re: [转载] the last birthday before 30Leadership: Called to Serve (ZZ)Re: 有些人略知皮毛就拽Re: Help: An accounting question againRe: urgent!help!how to ask ets to send my gmat score[转载] 请辞Business(商学院)版BMRanking in Production/Operations Management of MBARe: when is a good time to get a MBA?[转载] My Most Memorable MBA Class at UT (By Wang Xiaobo, UT MBA 2002)ZZ