1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
37:
38:
39:
40:
41:
42:
43:
44:
45:
46:
47:
48:
49:
50:
51:
52:
53:
54:
55:
56:
57:
58:
59:
60:
61:
62:
63:
|
" codeBody "
USE [JobBoardRegion]
GA
PLAATS ANSI_NULLS
GA
PLAATS QUOTED_IDENTIFIER
GA
VERANDER PROCEDURE [dbo]. [1LargeClientInsert]
@ID int.
ZOALS
VASTGESTELDE NOCOUNT
VERKLAAR @NEWID INT.;
NEEM dbo.JBClient op
(
JBCLSiteID,
JBCLName,
JBCLAddress,
JBCLPhone,
JBCLEmail,
JBCLCompanyType,
JBCLURL,
JBCLAccountType,
JBCLBillingContact,
JBCLDescription,
JBCLAccountLive,
JBCLMStartDate,
JBCLMEndDate,
FreeTrial
)
SELECTEER
@ID,
„naam“,
„adres“,
„telefoon“,
„[email protected]“,
„r“,
'http://www.website.co.uk',
„m“,
„persoon“,
„bedrijfbeschrijving“,
„Y“,
„00:00 2010-05-19: 00.000“,
„00:00 2011-05-19: 00.000“,
„Y“;
REEKS @NEWID = SCOPE_IDENTITY ();
TUSSENVOEGSEL dbo.JBEmployee
(
JBEClientID,
JBESiteID,
JBEName,
JBELevel,
JBEUsername,
JBEPassword,
JBEPhone
)
SELECTEER
@NewID,
@ID,
„persoon“,
'a',
„[email protected]“,
„wachtwoord“,
„telefoon“;
GA
|