ebook45-4

Size: px
Start display at page:

Download "ebook45-4"

Transcription

1

2 4 T-SQL SQL Server S Q L 4.1 CAST CONVERT C A S T C O N V E RT C A S T CAST ( e x p r e s s i o n AS d a t a _ t y p e) e x p r e s s i o n SQL Server D a t a _ t y p e C A S T l u e = 50 I N T E G E R PRINT 'The value is ' + CAST(@intValue AS VA R C H A R ( 1 0 ) ) C O N V E RT C A S T D AT E T I M E D AT E T I M E C O N V E RT (data_type [ (length)], expression [, style]) d a t a _ t y p e l e n g t h S t y l e D AT E T I M E 4-1 A N S I C O N V E RT (VARCHAR(16), GETDATE( ), 102) ( y y ) ( y y y y ) 4-1 DAT E T I M E / (*) mon dd yyyy h h : m i A M U S A m m / d d / y y A N S I y y. m m. d d B r i t i s h / F r e n c h d d / m m / y y G e r m a n d d. m m. y y I t a l i a n d d - m m - y y dd mon yy mon dd,yy h h : m i : s s (*) mon dd yyyy U S A m m - d d - y y H h : m i : s s : m m m A M

3 4 T- S Q L 57 ( y y ) ( y y y y ) / J A PA N y y / m m / d d I S O y y m m d d (*) E u r o p e + dd mon yyyy h h : m i : s s : m m m ( 2 4 h ) h h : m i : s s : m m m ( 2 4 h ) - ( 2 4 h ) (*) ODBC yyyy-mm-dd hh:mi:ss (*) O D B C y y y y - m m - d d h h : m i : m s. m m m ( 2 4 h ) 4.2 P R I N T 8000 A S C I I C H A R VA R C H A R C O N V E RT 4-1 P R I N T C O N V E RT I N VA R C H A R 4-1 CHAR(60) /* define the variables */ = 15 = COUNT(*) FROM sales WHERE qty /* Concatenate the string using CONVERT to format the variables */ = 'There are ' + CONVERT ( VA R C H A R,@ i n t N u m O r d e r s ) + ' orders with a quantity greater than ' + CONVERT ( x t /* CODE RESULTS - DO NOT RUN CODE AFTER THIS LINE */ (1 row(s) aff e c t e d ) (1 row(s) aff e c t e d ) (1 row(s) aff e c t e d ) There are 13 orders with a quantity greater than 15

4 S E L E C T S E L E C T SET NOCOUNT ON S E L E C T SET NOCOUNT OFF SET NOCOUNT OFF SET NOCOUNT ON 4-2 SET NOCOUNT CHAR(60) /* define the variables */ = 15 = COUNT(*) FROM sales WHERE qty /* Concatenate the string using CONVERT to format the variables */ = 'There are ' x t SET NOCOUNT OFF + CONVERT ( VA R C H A i n t N u m O r d e r s ) + ' orders with a quantity greater than ' + /* CODE RESULTS - DO NOT RUN CODE AFTER THIS LINE */ There are 13 orders with a quantity greater than 15 P R I N T S E L E C T S E L E C T P R I N T ( ) R A I S E R R O R sysmessages SQL Server s y s m e s s a g e s s y s m e s s a g e s 4-2 sysmssages E r r o r I N T S e v e r i t y S M A L L I N T D l e v e l S M A L L I N T D e s c r i p t i o n WARCHAR (510) M s g L a n g i d S M A L L I N T N U L L s y s m e s s a g e s

5 4 T- S Q L 59 SELECT error, severity, description FROM master.. s y s m e s s a g e s ORDE BY error sysmessages s y s m e s s a g e s New message added 504 Stored procedure %.* s not found 1 7 D B O S A 7111 Can t log text value because log is out of space 18 SQL Server 516 Attempt to get system date/time failed 19 S A There is insufficient system memory to run this query Stored procedure %.* s is corrupted. Must re-create procedure SQL Server s y s m e s s a g e s sp_addmessage(), sp_altermessage() s p _ d r o p m e s s a g e () 1. s y s m e s s a g e s s p _ a d d m e s s a g e () s y s m e s s a g e s

6 s y s m e s s a g e s sp_addmessage 50001, 12, 'A number greater than 0 was expected. Please retry' /* CODE RESULTS - DO NOT RUN CODE AFTER THIS LINE */ New message added. m e s s a g e _ i d M E S S A G E _ I D s y s m e s s a g e s sp_addmessage 50001, 12, 'The specified value for %s was invalid.' /* CODE RESULTS - DO NOT RUN CODE AFTER THIS LINE */ Msg 15043, Level 16, State 1 You must specify 'REPLACE' to overwrite an existing message. R E P L A C E 4-5 ( U.S. English) Windows NT Application Log 4-5 R E P L A C E s y s m e s s a g e s sp_addmessage 50001, 12, 'The specified value for %s was invalid.', US_English, TRUE, REPLACE /* CODE RESULTS - DO NOT RUN CODE AFTER THIS LINE */ Replacing message. New message added. s y s m e s s a g e s m e s s a g e _ i d 2. s y s m e s s a g e s s y s m e s s a g e s s p _ a l t e r m e s s a g e () Windows NT Event Log 4-6 sp_altermessage 50001, WITH_LOG, FA L S E 4-6 s y s m e s s a g e s /* CODE RESULTS - DO NOT RUN CODE AFTER THIS LINE */ Message altered. 3. s y s m e s s a g e s s p _ d r o p m e s s a g e () s y s m e s s a g e s

7 4 T- S Q L sp_dropmessage s y s m e s s a g e s /* CODE RESULTS - DO NOT RUN CODE AFTER THIS LINE */ Message dropped R A I S E R R O R R A I S E R R O R WITH LOG Wi n d o w s NT Event Log Windows NT Application Log SQL Server Error Log RAISERROR ({msg_id msg_str} {, s e v e r i t y, state} [, argument [, n]]) [WITH o p t i o n [, n] ] M s g _ i d s y s m e s s a g e s m s g _ i d m s g _ i d SQL Server m s g _ i d s e v e r i t y SQL Server s t a t e s t a t e a rg u m e n t o p t i o n Option L O G N O WA I T S E T E R R O R L O G SQL Server Windows NT E R R O R m s g _ i d 19 R A I S E R R O R 4-8 s y s m e s s a g e s RAISERROR(14056, 16, 1) 4-8 s y s m e s s a g e s /* Build a string to display the current value of the global */ /* You do not normally have to do this; this */

8 62 /* step is for the purposes of this example. */ = 'The value is ' + C O N V E RT ( c h e r r o r ) /* CODE RESULTS - DO NOT RUN CODE AFTER THIS LINE */ Server: Msg 14056, Level 16, State 1, Line 1 The subscription could not be dropped at this time. The value is s y s m e s s a g e s 4-7 %.* s 4-9 s y s m e s s a g e s s y s m e s s a g e s R A I S E R R O e r r o r m e s s a g e _ i d e r r o r WITH SETERROR CHAR(255) 4-9 s y s m e s s a g e s /* Raise the error, giving the error text, severity, and state. */ RAISERROR('Undefined error raised using the WITH SETERROR option',1,2) WITH SETERROR /* Build a string to display the current value of the global */ /* You do not normally have to do this; this */ /* step is for the purposes of this example. */ = 'Using WITH SETERROR sets the error number ' + generated to ' + CONVERT ( c h e r r o r ) /* CODE RESULTS - DO NOT RUN CODE AFTER THIS LINE */ Undefined error raised using the WITH SETERROR option (1 row(s) aff e c t e d ) Using WITH SETERROR sets the error number generated to CASE C A S E C A S E CASE C A S E

9 4 T- S Q L 63 t i t l e s t y p e t i t l e _ i d C A S E t i t l e _ i d C A S E B o o k Ty p e 4-10 SELECT title_id, FROM titles 4-10 C A S E CASE SUBSTRING(title_id,1,2) END AS BookTy p e WHEN 'BU' THEN 'Business' WHEN 'MC' THEN 'Modern Cooking' WHEN 'PC' THEN 'Popular Computing' WHEN 'PS' THEN 'Psychology' WHEN 'TC' THEN 'Traditional Cooking' The following shows the output from the query: title_id BookType PC1035 Popular Computing PS1372 Psychology B U 1111 Business PS7777 Psychology TC4203 Traditional Cooking PS2091 Psychology PS2106 Psychology PC9999 Popular Computing TC3218 Traditional Cooking PS3333 Psychology PC8888 Popular Computing MC2222 Modern Cooking BU7832 Business TC7777 Traditional Cooking BU1032 Business MC3021 Modern Cooking MC3026 Modern Cooking BU2075 Business (18 row(s) affected) C A S E

10 64 select distinct 'WHEN ''' SUBSTRING(title_id,1,2) + ''' THEN' from titles /* CODE RESULTS - DO NOT RUN CODE AFTER THIS LINE */ WHEN 'BU' THEN WHEN 'MC' THEN WHEN 'PC' THEN WHEN 'PS' THEN WHEN 'TC' THEN (5 row(s) affected) CASE C A S E C A S E C A S E 1. C A S E C A S E C A S E SELECT sum(qty) AS To t a l, FROM 4-12 d a t e n a m e ( w e e k d a y, ord_date) AS We e k d a y sales GROUP BY datename(weekday, ord_date) SELECT sum(qty) AS To t a l, 4-13 C A S E CASE datepart(weekday, ord_date) WHEN 1 THEN 'Sunday' WHEN 2 THEN 'Monday' WHEN 3 THEN 'Tu e s d a y ' WHEN 4 THEN 'We d n e s d a y ' WHEN 5 THEN 'Thursday' WHEN 6 THEN 'Friday'

11 4 T- S Q L 65 END AS We e k d a y FROM sales WHEN 7 THEN 'Saturday' GROUP BY datepart(weekday, ord_date) 4-12 Total Weekday Monday 115 Saturday 45 Sunday 40 Thursday 78 Tu e s d a y 85 We d n e s d a y (6 row(s) aff e c t e d ) 4-13 Total Weekday Sunday 130 Monday 78 Tu e s d a y 85 We d n e s d a y 40 Thursday 115 Saturday (6 row(s) aff e c t e d ) 2. C A S E C A S E C A S E 4-14 y t d _ s a l e s W H E N E L S E E L S E S E L E C T title_id, price, ytd_sales, "DiscountPrice" = C A S E 4-14 C A S E WHEN ytd_sales < 1000 THEN C O N V E RT (SMALLMONEY, price *.50) WHEN ytd_sales < 3000 THEN

12 66 C O N V E RT (SMALLMONEY, price *.85) E N D ELSE price FROM titles 4-14 title_id price ytd_sales DiscountPrice BU B U BU BU MC MC MC3026 (null) (null) ( n u l l ) PC PC PC9999 (null) (null) ( n u l l ) PS PS PS PS PS TC TC TC (18 row(s) aff e c t e d ) y t d _ s a l e s p i r c e D i s c o u n t P r i c e C A S E 3. C A S E C A S E S E L E C T C A S E S E L E C T C A S E 4-15 S E L E C T S E L E C s t o r e s W H E N E L S E C A S

13 4 T- S Q L 67 SELECT DISTINCT st.stor_name, 'Sales Rating' = C A S E 4-15 C A S E WHEN (SELECT SUM(sa.qty) FROM sales sa THEN 'Poor' WHEN (SELECT SUM(sa.qty) FROM sales sa THEN 'Av e r a g e ' WHEN (SELECT SUM(sa.qty) FROM sales sa THEN 'Good' ELSE 'Excellent' E N D, 'Sales Total' = (SELECT SUM(sa.qty) FROM sales sa FROM stores st, sales sa ORDER BY 'Sales To t a l ' stor_name WHERE st.stor_id = sa.stor_id) < 10 WHERE st.stor_id = sa.stor_id) < 80 WHERE st.stor_id = sa.stor_id) < 100 WHERE st.stor_id = sa.stor_id) Sales Rating Sales Total Eric the Read Books P o o r 8 Fricative Bookshop Av e r a g e 6 0 B o o k b e a t G o o d 8 0 News & Brews G o o d 9 0 B a r n u m ' s E x c e l l e n t Doc-U-Mat: Quality Laundry and Books E x c e l l e n t (6 row(s) affected) 4. C A S E C A S E 4-16 U P D AT E C A S E s a l e s p a y t e r m s ( 2 ) q t y p a y t e r m s U P D AT E C A S E U P D ATE sales SET payterms = C A S E 4-16 C A S E WHEN (SELECT SUM(qty) FROM sales s1

14 68 WHERE sales.stor_id = s1.stor_id) < 10 THEN 'On Invoice' WHEN (SELECT SUM(qty) FROM sales s1 WHERE sales.stor_id = s1.stor_id) < 100 THEN 'Net 30' ELSE 'Net 60' E N D G O SELECT stor_id, SUBSTRING(ord_num,1,5) ord_num, ord_date, qty, payterms, title_id FROM sales G O (21 row(s) aff e c t e d ) stor_id ord_num ord_date qty payterms title_id Sep :00AM 5 On Invoice B U a Sep :00AM 3 On Invoice P S A2976 May :00AM 50 Net 60 P C QA744 Sep :00AM 75 Net 60 P S D4482 Sep :00AM 10 Net 30 P S P2121 Jun :00AM 40 Net 30 T C P2121 Jun :00AM 20 Net 30 T C P2121 Jun :00AM 20 Net 30 T C N9140 Sep :00AM 20 Net 60 P S N9140 Sep :00AM 25 Net 60 M C P3087 May :00AM 20 Net 60 P S P3087 May :00AM 25 Net 60 P S P3087 May :00AM 15 Net 60 P S P3087 May :00AM 25 Net 60 P S QQ229 Oct :00AM 15 Net 30 B U TQ456 Dec :00AM 10 Net 30 M C X999 Feb :00AM 35 Net 30 B U LL Sep :00AM 15 Net 30 M C LL Sep :00AM 10 Net 30 B U P723 Mar :00AM 25 Net 30 B U QA879 May :00AM 30 Net 30 PC1035 (21 row(s) affected)

15 4 T- S Q L (distributed transaction) ( 3 ) (Distributed Transaction Coordinator D T C ) 3 D T C D T C BEGIN DISTRIBUTED TRANSACTION D T C ( ) ( ) ( ) (commit tree) 1. REQUEST T R A N S A C T I O N R E L A T I O N S H I P 2. AGREE TO RELATIONSHIP DTC 3. PREPARE TRANSACTION DTC 4. TRANSACTION PREPARED 5A.COMMT TRANSACTION 6. TRANSACTION COMMITTED 5B.ROLLBACK TRANSACTION F A I L U R E 5C. ROLLBACK F A I L U R E 4-1 D T C ( ) ( 4-1 4

16 70 ) A 6 5 B 5 C 5 A 6 5 B 5 C 5 B 5 C ( ) D T C SQL Enterprise Manager Server Manager D T C Tr a n s a c t i o n F o rg e t ( ) S Q L Enterprise Manager D T C DTC D T C ( 16 ) B E G I N DISTRIBUTED TRAN(DISTRIBUTED TRANSACTION) D T C C O M M I T T R A N S R O L L B A C K s p _ a d d s e r v e r () s p _ a d d r e m o t e l o g i n () Enterprise Manager S e r v e Remote Server M a n a g e Remote Servers

17 4 T- S Q L j o b _ i d j o b s j o b s D T C C R E ATE PROCEDURE prupdatejobs(@insjob_id varchar(50)) AS U P D ATE jobs SET job_desc WHERE job_id 4-18 C R E ATE PROCEDURE smallint, varchar(30)) AS varchar(255) /* Start a Transaction */ BEGIN DISTRIBUTED TRANSACTION UpdateJobs /* Change Local Jobs Table */ U P D ATE jobs SET job_desc where job_id /* Make a string with the remote server name and */ /* stored procedure to execute */ /* Syntax for remote procedure call is NTSQL2.pubs..prUpdateJobs */ + '.pubs..prupdatejobs ' /* Update remote server. @chvjob_desc /* Commit the MS DTC transaction */ COMMIT TRANSACTION E X E C U T E 4-19 j o b s job_id 5 j o b _ d e s c C E O exec prupdatejobs 5,'CEO', NTSQL This command did not return data, and it did not return any rows

18 72 N T S Q L 2 D T C 4-20 D T C D T C j o b _ i d j o b _ d e s c C E O EXEC prupdatejobs 5,'Chief Executive Officer', NTSQL Msg 8501, Level 16, State 1 DTC on server 'NTSQL' is unavailable Msg 8524, Level 16, State 1 The current transaction couldn't be exported to remote site DTC It has been rolled back. D T C b o o k i n v b o o k i n 4-21 p u b s C R E ATE TABLE bookinv ( ) title_id quantity location lastaudit tid 4-21 CONSTRAINT p1_constraint PRIMARY KEY NONCLUSTERED, integer, char(2), datetime I N S E RT INTO bookinv SELECT DISTINCT title_id, FROM titles C O A L E S C E ( C O N V E RT ( i n t, R A N D ( y t d _ s a l e s ) * ), 1 0 ), S U B S T R I N G ( t y p e, 1, 2 ), p u b d a t e b o o k _ i d b o o k i n v

19 4 T- S Q L t i t l e _ i d S t o r I D U p d a t e J o b s t i t l e s y t d _ s a l e s s a l e s e r r o e r r o r : CREATE PROCEDURE prupdatebookinv(@tidtitles tid, int) AS 3 : 4: varchar(255) 5 : 6: /* Get quantity of available books in inventory */ 7: = (SELECT quantity FROM bookinv 8: WHERE title_id t l e s ) 9 : 10: < 0 11: BEGIN 12: /* If available quantity is less than zero, then raise error */ 13: = 'There are only ' 14: + CONVERT ( v a r c h a r ( 1 0 i n t Av a i l Q t y ) 15: + ' available, remote transaction denied' 16: RAISERROR (@chvoutputmsg, 16, -1) 17: END 18: ELSE 19: BEGIN 20: /* If available quantity is greater than zero, */ 21: /* update the inventory table */ 22: UPDATE bookinv SET quantity = quantity 23: WHERE title_id t l e s 24: = 'There were ' 25: + CONVERT ( v a r c h a r ( 1 0 i n t Av a i l Q t y ) 26: + ' available, remote transaction succeeds' 27: 28: END

20 : CREATE PROCEDURE prcreatesale tid, int, char(4), varchar(30)) AS 5: 6: varchar(255), varchar(20) 8 : 9: /* Make a string with the remote server name and */ 10: /* stored procedure to execute. */ 11: 12: + '.pubs..prupdatebookinv ' 1 3 : 14: /* Generate an order number. */ 15: + SUBSTRING(@tidTi t l e I d, 1, 2 ) 1 6 : 17: /* Start a transaction. */ 18: BEGIN DISTRIBUTED TRANSACTION UpdateJobs 1 9 : 20: /* Update local titles table. */ 21: UPDATE titles SET ytd_sales = ytd_sales 22: WHERE title_id 2 3 : 24: /* Add entry to local sales table. */ 25: INSERT sales(stor_id, ord_num, ord_date, qty 26:, payterms, title_id) 27: VALUES 28:, 'Net 2 9 : 30: /* Update remote server. */ @intqty 32: 33: > 0 34: BEGIN 35: ROLLBACK TRAN 36: PRINT 'TRANSACTION WAS ROLLED BACK' 37: END 38: ELSE 39: BEGIN 40: COMMIT TRAN 41: PRINT 'TRANSACTION WAS COMMITTED' 42: END

21 4 T- S Q L E X E C U T E b o o k i n v 100 B U 1032 t i t l e s s a l e s 40 EXEC prcreatesale 'BU1032',100,'6380','NTSQL2' 4-24 /* Enter only the EXEC statement - sample output follows. */ Msg 50000, Level 16, State 1 There are only 40 available; remote transaction denied. TRANSACTION WAS ROLLED BACK EXEC prcreatesale 'BU1032',20,'6380','NTSQL2' /* Enter only the EXEC statement - sample output follows. */ There were 40 available; remote transaction succeeds. TRANSACTION WAS COMMITTED 4-26 * Run these two queries against the local database. */ SELECT stor_id, convert(char(10),ord_num), ord_date, qty, title_id G O FROM SALES SELECT title_id, ytd_sales FROM titles G O /* Sample data for local database after a fresh install of pubs */ stor_id ord_date qty title_id Sep :00AM 5 B U a Sep :00AM 3 P S A2976 May :00AM 50 P C 8888

22 QA Sep :00AM 75 P S D4482 Sep :00AM 10 P S P2121 Jun :00AM 40 T C P2121 Jun :00AM 20 T C P2121 Jun :00AM 20 T C N Sep :00AM 20 P S N Sep :00AM 25 M C P3087a May :00AM 20 P S P3087a May :00AM 25 P S P3087a May :00AM 15 P S P3087a May :00AM 25 P S QQ2299 Oct :00AM 15 B U TQ456 Dec :00AM 10 M C X999 Feb :00AM 35 B U LL922 Sep :00AM 15 M C LL930 Sep :00AM 10 B U P723 Mar :00AM 25 B U QA879.1 May :00AM 30 P C 1035 (21 row(s) aff e c t e d ) title_id ytd_sales BU B U BU BU MC MC MC3026 (null) PC PC PC9999 (null) PS PS PS PS PS TC TC TC (18 row(s) aff e c t e d )

23 4 T- S Q L /* Run this query against the remote database. */ SELECT * FROM bookinv /* Results for a bookinv created against a fresh install of pubs*/ title_id quantity location lastaudit BU b u Jun :00AM B U b u Jun :00AM BU b u Jun :00AM BU b u Jun :00AM MC m o Jun :00AM MC m o Jun :00AM MC U N Dec :35AM PC p o Jun :00AM PC p o Jun :00AM PC p o Dec :35AM PS p s Oct :00AM PS p s Jun :00AM PS p s Oct :00AM PS p s Jun :00AM PS p s Jun :00AM TC t r Oct :00AM TC t r Jun :00AM TC t r Jun :00AM (18 row(s) affected) MS DTC S AVE TRAN S AVE BEGIN DISTRIBUTED TRANSACTION DTC D T C DTC Query Manager,

24 78 BEGIN DISTRIBUTED T R A N S A C T I O N 4.7 T- S Q L C A S E P R I N T s y s m e s s a g e s R A I S E R R O R

ebook45-5

ebook45-5 5 S Q L SQL Server 5.1 5-1 SQL Server 5-1 A B S A C O S A S I N ATA N AT N 2 C E I L I N G C O S C O T D E G R E E S E X P F L O O R L O G L O G 10 P I P O W E R R A D I A N S R A N D R O U N D S I G N

More information

SQL Server SQL Server SQL Mail Windows NT

SQL Server SQL Server SQL Mail Windows NT ... 3 11 SQL Server... 4 11.1... 7 11.2... 9 11.3... 11 11.4... 30 11.5 SQL Server... 30 11.6... 31 11.7... 32 12 SQL Mail... 33 12.1Windows NT... 33 12.2SQL Mail... 34 12.3SQL Mail... 34 12.4 Microsoft

More information

untitled

untitled OO 1 SQL Server 2000 2 SQL Server 2000 3 SQL Server 2000 DDL 1 2 3 DML 1 INSERT 2 DELETE 3 UPDATE SELECT DCL 1 SQL Server 2 3 GRANT REVOKE 1 2 1 2 3 4 5 6 1 SQL Server 2000 SQL Server SQL / Microsoft SQL

More information

ebook46-23

ebook46-23 23 Access 2000 S Q L A c c e s s S Q L S Q L S Q L S E L E C T S Q L S Q L A c c e s s S Q L S Q L I N A N S I Jet SQL S Q L S Q L 23.1 Access 2000 SQL S Q L A c c e s s Jet SQL S Q L U N I O N V B A S

More information

10

10 10 08 10 Periodical Report 1 4 8 1 1 4 8 Batch Job Index DBA Index SQL WHERE Execution Plan SQL 4 8 SQL 10.3 10.4 SQL 318 08 5 SQL SQL Server Oracle 20--03 16:30:52 2003163052 Orders_Big SQL T-SQL 20-01-01

More information

6-1 Table Column Data Type Row Record 1. DBMS 2. DBMS MySQL Microsoft Access SQL Server Oracle 3. ODBC SQL 1. Structured Query Language 2. IBM

6-1 Table Column Data Type Row Record 1. DBMS 2. DBMS MySQL Microsoft Access SQL Server Oracle 3. ODBC SQL 1. Structured Query Language 2. IBM CHAPTER 6 SQL SQL SQL 6-1 Table Column Data Type Row Record 1. DBMS 2. DBMS MySQL Microsoft Access SQL Server Oracle 3. ODBC SQL 1. Structured Query Language 2. IBM 3. 1986 10 ANSI SQL ANSI X3. 135-1986

More information

第4单元 创建数据类型和表

第4单元  创建数据类型和表 138 MCSE 2000 SQL 2000 8.1 Stored Procedures Microsoft SQL Server 2000 ( ) 8.1.1 Transact-SQL SQL Server (System Stored Procedures,sp_), master ( sp_prefix ) (Local Stored Procedures), (Temporary Stored

More information

ebook 96-16

ebook 96-16 16 13 / ( ) 16-1 SQL*Net/Net8 SQL*Net/Net8 SQL*Net/Net8 16-1 / S Q L SQL*Net V2 N e t 8 S Q L * N e t N e t ( ) 16.1 S Q L O r a c l e S Q L 16 401 ) ( H R _ L I N K create database link p u b l i c (

More information

C/C++ - 字符输入输出和字符确认

C/C++ - 字符输入输出和字符确认 C/C++ Table of contents 1. 2. getchar() putchar() 3. (Buffer) 4. 5. 6. 7. 8. 1 2 3 1 // pseudo code 2 read a character 3 while there is more input 4 increment character count 5 if a line has been read,

More information

2/80 2

2/80 2 2/80 2 3/80 3 DSP2400 is a high performance Digital Signal Processor (DSP) designed and developed by author s laboratory. It is designed for multimedia and wireless application. To develop application

More information

01 SQL Server SQL Server 2008 SQL Server 6-1 SSIS SQL Server ( master ) ( msdb ) SQL Server ( master ) master 6-1 DTS sysadmin 6-1 sysa

01 SQL Server SQL Server 2008 SQL Server 6-1 SSIS SQL Server ( master ) ( msdb ) SQL Server ( master ) master 6-1 DTS sysadmin 6-1 sysa 6 01 SQL Server SQL Server 2008 SQL Server 6-1 SSIS 6-1 06 228 6-1 SQL Server ( master ) ( msdb ) SQL Server ( master ) master 6-1 DTS sysadmin 6-1 sysadmin 6-1 SQL Server 2008 SSIS SQL Server (dbo) master

More information

ebook140-9

ebook140-9 9 VPN VPN Novell BorderManager Windows NT PPTP V P N L A V P N V N P I n t e r n e t V P N 9.1 V P N Windows 98 Windows PPTP VPN Novell BorderManager T M I P s e c Wi n d o w s I n t e r n e t I S P I

More information

一步一步教你搞网站同步镜像!|动易Cms

一步一步教你搞网站同步镜像!|动易Cms 一 步 一 步 教 你 搞 网 站 同 步 镜 像! 动 易 Cms 前 几 天 看 见 论 坛 里 有 位 朋 友 问 一 个 关 于 镜 像 的 问 题, 今 天 刚 好 搞 到 了 一 个, 于 是 拿 出 来 和 大 家 一 起 分 享 了! 1. 介 绍 现 在 的 网 站 随 着 访 问 量 的 增 加, 单 一 服 务 器 无 法 承 担 巨 大 的 访 问 量, 有 没 有 什 么

More information

ebook140-8

ebook140-8 8 Microsoft VPN Windows NT 4 V P N Windows 98 Client 7 Vintage Air V P N 7 Wi n d o w s NT V P N 7 VPN ( ) 7 Novell NetWare VPN 8.1 PPTP NT4 VPN Q 154091 M i c r o s o f t Windows NT RAS [ ] Windows NT4

More information

Microsoft Word - 序+目錄.doc

Microsoft Word - 序+目錄.doc ORACLE 公 司 的 專 業 認 證 是 當 今 市 場 上 公 認 價 值 最 高, 最 具 鑑 別 力 的 認 證 目 前 全 球 有 超 過 50 萬 以 上 人 已 透 過 Oracle Certification Program 取 得 專 業 認 證, 成 為 職 場 新 鮮 人 的 首 選 認 證, 它 具 有 以 下 三 大 優 勢 : 一 更 多 的 工 作 機 會, 二 更

More information

學 科 100% ( 為 單 複 選 題, 每 題 2.5 分, 共 100 分 ) 1. 請 參 閱 附 圖 作 答 : (A) 選 項 A (B) 選 項 B (C) 選 項 C (D) 選 項 D Ans:D 2. 下 列 對 於 資 料 庫 正 規 化 (Normalization) 的 敘

學 科 100% ( 為 單 複 選 題, 每 題 2.5 分, 共 100 分 ) 1. 請 參 閱 附 圖 作 答 : (A) 選 項 A (B) 選 項 B (C) 選 項 C (D) 選 項 D Ans:D 2. 下 列 對 於 資 料 庫 正 規 化 (Normalization) 的 敘 ITE 資 訊 專 業 人 員 鑑 定 資 料 庫 系 統 開 發 與 設 計 實 務 試 卷 編 號 :IDS101 注 意 事 項 一 本 測 驗 為 單 面 印 刷 試 題, 共 計 十 三 頁 第 二 至 十 三 頁 為 四 十 道 學 科 試 題, 測 驗 時 間 90 分 鐘 : 每 題 2.5 分, 總 測 驗 時 間 為 90 分 鐘 二 執 行 CSF 測 驗 系 統 -Client

More information

Microsoft PowerPoint - ch6 [相容模式]

Microsoft PowerPoint - ch6 [相容模式] UiBinder wzyang@asia.edu.tw UiBinder Java GWT UiBinder XML UI i18n (widget) 1 2 UiBinder HelloWidget.ui.xml: UI HelloWidgetBinder HelloWidget.java XML UI Owner class ( Composite ) UI XML UiBinder: Owner

More information

AL-M200 Series

AL-M200 Series NPD4754-00 TC ( ) Windows 7 1. [Start ( )] [Control Panel ()] [Network and Internet ( )] 2. [Network and Sharing Center ( )] 3. [Change adapter settings ( )] 4. 3 Windows XP 1. [Start ( )] [Control Panel

More information

ebook 132-2

ebook 132-2 2 SQL Server 7.0 SQL Server SQL Server 7 SQL Server 7 5 2.1 SQL Server 7 SQL Server 7 SQL Server SQL Server SQL Server 2.1.1 SQL Server Windows NT/2000 Windows 95/98 ( r a n d o m access memory R A M )

More information

AL-MX200 Series

AL-MX200 Series PostScript Level3 Compatible NPD4760-00 TC Seiko Epson Corporation Seiko Epson Corporation ( ) Seiko Epson Corporation Seiko Epson Corporation Epson Seiko Epson Corporation Apple Bonjour ColorSync Macintosh

More information

epub 61-2

epub 61-2 2 Web Dreamweaver UltraDev Dreamweaver 3 We b We b We Dreamweaver UltraDev We b Dreamweaver UltraDev We b We b 2.1 Web We b We b D r e a m w e a v e r J a v a S c r i p t We b We b 2.1.1 Web We b C C +

More information

基于UML建模的管理管理信息系统项目案例导航——VB篇

基于UML建模的管理管理信息系统项目案例导航——VB篇 PowerBuilder 8.0 PowerBuilder 8.0 12 PowerBuilder 8.0 PowerScript PowerBuilder CIP PowerBuilder 8.0 /. 2004 21 ISBN 7-03-014600-X.P.. -,PowerBuilder 8.0 - -.TP311.56 CIP 2004 117494 / / 16 100717 http://www.sciencep.com

More information

RUN_PC連載_12_.doc

RUN_PC連載_12_.doc PowerBuilder 8 (12) PowerBuilder 8.0 PowerBuilder PowerBuilder 8 PowerBuilder 8 / IDE PowerBuilder PowerBuilder 8.0 PowerBuilder PowerBuilder PowerBuilder PowerBuilder 8.0 PowerBuilder 6 PowerBuilder 7

More information

untitled

untitled Chapter 01 1.0... 1-2 1.1... 1-2 1.1.1...1-2 1.1.2...1-4 1.1.2.1... 1-6 1.1.2.2... 1-7 1.1.2.3... 1-7 1.1.2.4... 1-7 1.1.2.5... 1-8 1.1.2.6... 1-8 1.1.3??...1-8 1.1.4...1-9 1.2...1-12 1.3...1-14 1.4...1-17

More information

untitled

untitled Co-integration and VECM Yi-Nung Yang CYCU, Taiwan May, 2012 不 列 1 Learning objectives Integrated variables Co-integration Vector Error correction model (VECM) Engle-Granger 2-step co-integration test Johansen

More information

untitled

untitled 1 2 3 4 5 A 800 700 600 500 400 300 200 100 0-100 10000 9500 9000 8500 8000 7500 7000 6500 6000 2006.1-2007.5 A 1986.1-1991.12 6 7 6 27 WIND A 52.67 2007 44 8 60 55 50 45 40 35 30 25 20 15 10 2001-05 2002-02

More information

untitled

untitled 29 12 1 21-53519888-1922 Ch57261821@yahoo.com.cn 11 12.78 1.6 95.36 1 114.88 6 3 6% 8 35.% 3.% 25.% 2.% 15.% 1.% 5.%.% -5.% -1.% -15.% 9-6 9-6 9-7 9-7 9-7 9-8 9-8 9-8 9-9 9-9 9-1 9-1 9-11 9-11 9-11 9-12

More information

Microsoft Word - template.doc

Microsoft Word - template.doc HGC efax Service User Guide I. Getting Started Page 1 II. Fax Forward Page 2 4 III. Web Viewing Page 5 7 IV. General Management Page 8 12 V. Help Desk Page 13 VI. Logout Page 13 Page 0 I. Getting Started

More information

一 個 SQL Injection 實 例 的 啟 示 頁 2 / 6 因 此, 在 知 名 網 站 上 看 到 SQL Injection, 讓 人 驚 心, 卻 不 意 外 網 站 專 案 外 包 是 目 前 業 界 的 常 態, 而 在 價 格 取 勝 的 制 度 下, 低 價 得 標 的 S

一 個 SQL Injection 實 例 的 啟 示 頁 2 / 6 因 此, 在 知 名 網 站 上 看 到 SQL Injection, 讓 人 驚 心, 卻 不 意 外 網 站 專 案 外 包 是 目 前 業 界 的 常 態, 而 在 價 格 取 勝 的 制 度 下, 低 價 得 標 的 S 一 個 SQL Injection 實 例 的 啟 示 頁 1 / 6 你 的 網 站 在 裸 奔 嗎? 一 個 SQL Injection 實 例 的 啟 示 作 者 : 李 明 儒 SQL Injection( 資 料 隱 碼 攻 擊 ) 問 題 早 就 不 是 什 麼 新 聞, 但 前 陣 子 在 一 個 頗 具 知 名 度 的 活 動 網 站 上, 赫 然 發 現 它 大 刺 刺 地 現 身!

More information

IP505SM_manual_cn.doc

IP505SM_manual_cn.doc IP505SM 1 Introduction 1...4...4...4...5 LAN...5...5...6...6...7 LED...7...7 2...9...9...9 3...11...11...12...12...12...14...18 LAN...19 DHCP...20...21 4 PC...22...22 Windows...22 TCP/IP -...22 TCP/IP

More information

目錄

目錄 資 訊 素 養 線 上 教 材 單 元 五 資 料 庫 概 論 及 Access 5.1 資 料 庫 概 論 5.1.1 為 什 麼 需 要 資 料 庫? 日 常 生 活 裡 我 們 常 常 需 要 記 錄 一 些 事 物, 以 便 有 朝 一 日 所 記 錄 的 事 物 能 夠 派 得 上 用 場 我 們 能 藉 由 記 錄 每 天 的 生 活 開 銷, 就 可 以 在 每 個 月 的 月 底 知

More information

untitled

untitled Database System Principle Database System Principle 1 SQL 3.1 SQL 3.2-3.3 3.4 3.5 3.6 Database System Principle 2 3.1 SQL SQL Structured Query Language SQL Database System Principle 3 SQL 3.1.1 SQL 3.1.2

More information

1998目录.mdi

1998目录.mdi 香 港 回 歸 十 年 誌 目 録 卷 首 語 1 一 月 Jan 特 區 政 府 大 力 推 介 基 本 法 001 政 府 採 取 措 施 應 對 禽 流 感 006 心 繫 祖 國 敎 育 事 業 邵 逸 夫 先 生 第 十 一 次 向 內 地 敎 育 捐 款 010 取 消 第 一 收 容 港 利 港 利 民 015 天 災 無 情 人 間 有 情 021 推 動 選 民 登 記, 推 進

More information

目錄 C ontents Chapter MTA Chapter Chapter

目錄 C ontents Chapter MTA Chapter Chapter 目錄 C ontents Chapter 01 1-1 MTA...1-2 1-2...1-3 1-3...1-5 1-4...1-10 Chapter 02 2-1...2-2 2-2...2-3 2-3...2-7 2-4...2-11...2-16 Chapter 03 3-1...3-2 3-2...3-8 3-3 views...3-16 3-4...3-24...3-33 Chapter

More information

概述

概述 OPC Version 1.6 build 0910 KOSRDK Knight OPC Server Rapid Development Toolkits Knight Workgroup, eehoo Technology 2002-9 OPC 1...4 2 API...5 2.1...5 2.2...5 2.2.1 KOS_Init...5 2.2.2 KOS_InitB...5 2.2.3

More information

Guide to Install SATA Hard Disks

Guide to Install SATA Hard Disks SATA RAID 1. SATA. 2 1.1 SATA. 2 1.2 SATA 2 2. RAID (RAID 0 / RAID 1 / JBOD).. 4 2.1 RAID. 4 2.2 RAID 5 2.3 RAID 0 6 2.4 RAID 1.. 10 2.5 JBOD.. 16 3. Windows 2000 / Windows XP 20 1. SATA 1.1 SATA Serial

More information

ebook 132-6

ebook 132-6 6 SQL Server Windows NT Windows 2000 6.1 Enterprise Manager SQL Server Enterprise Manager( ) (Microsoft Management C o n s o l e M M C ) Enterprise Manager SQL Server Enterprise Manager 6.1.1 Enterprise

More information

C/C++ - 函数

C/C++ - 函数 C/C++ Table of contents 1. 2. 3. & 4. 5. 1 2 3 # include # define SIZE 50 int main ( void ) { float list [ SIZE ]; readlist (list, SIZE ); sort (list, SIZE ); average (list, SIZE ); bargragh

More information

User ID 150 Password - User ID 150 Password Mon- Cam-- Invalid Terminal Mode No User Terminal Mode No User Mon- Cam-- 2

User ID 150 Password - User ID 150 Password Mon- Cam-- Invalid Terminal Mode No User Terminal Mode No User Mon- Cam-- 2 Terminal Mode No User User ID 150 Password - User ID 150 Password Mon- Cam-- Invalid Terminal Mode No User Terminal Mode No User Mon- Cam-- 2 Mon1 Cam-- Mon- Cam-- Prohibited M04 Mon1 Cam03 Mon1 Cam03

More information

Oracle高级复制冲突解决机制的研究

Oracle高级复制冲突解决机制的研究 Oracle dbms_rectifier_diff Oracle : eygle (eygle.com@gmail.com dbms_rectifier_diff Oracle dbms_rectifier_diff : http://www.eygle.com/archives/2005/01/eoadbms_rectifi.html DIFFERENCES Oracle dbms_rectifier_diff.differences

More information

Oracle 4

Oracle 4 Oracle 4 01 04 Oracle 07 Oracle Oracle Instance Oracle Instance Oracle Instance Oracle Database Oracle Database Instance Parameter File Pfile Instance Instance Instance Instance Oracle Instance System

More information

錄...1 說...2 說 說...5 六 率 POST PAY PREPAY DEPOSIT 更

錄...1 說...2 說 說...5 六 率 POST PAY PREPAY DEPOSIT 更 AX5000 Version 1.0 2006 年 9 錄...1 說...2 說...3...4 說...5 六...6 6.1 率...7 6.2 POST PAY...8 6.3 PREPAY DEPOSIT...9 6.4...10 6.5...11 更...12...12 LCD IC LED Flash 更 兩 RJ11 ( ) DC ON OFF ON 狀 狀 更 OFF 復 狀 說

More information

科学计算的语言-FORTRAN95

科学计算的语言-FORTRAN95 科 学 计 算 的 语 言 -FORTRAN95 目 录 第 一 篇 闲 话 第 1 章 目 的 是 计 算 第 2 章 FORTRAN95 如 何 描 述 计 算 第 3 章 FORTRAN 的 编 译 系 统 第 二 篇 计 算 的 叙 述 第 4 章 FORTRAN95 语 言 的 形 貌 第 5 章 准 备 数 据 第 6 章 构 造 数 据 第 7 章 声 明 数 据 第 8 章 构 造

More information

RunPC2_.doc

RunPC2_.doc PowerBuilder 8 (5) PowerBuilder Client/Server Jaguar Server Jaguar Server Connection Cache Thin Client Internet Connection Pooling EAServer Connection Cache Connection Cache Connection Cache Connection

More information

习题1

习题1 习 题 1 数 据 库 系 统 基 本 概 念 1.1 名 词 解 释 DB DB 是 长 期 存 储 在 计 算 机 内 有 组 织 的 统 一 管 理 的 相 关 数 据 的 集 合 DB 能 为 各 种 用 户 共 享, 具 有 较 小 冗 余 度 数 据 间 联 系 紧 密 而 又 有 较 高 的 数 据 独 立 性 等 特 点 DBMS 是 位 于 用 户 与 操 作 系 统 之 间 的

More information

Windows RTEMS 1 Danilliu MMI TCP/IP QEMU i386 QEMU ARM POWERPC i386 IPC PC104 uc/os-ii uc/os MMI TCP/IP i386 PORT Linux ecos Linux ecos ecos eco

Windows RTEMS 1 Danilliu MMI TCP/IP QEMU i386 QEMU ARM POWERPC i386 IPC PC104 uc/os-ii uc/os MMI TCP/IP i386 PORT Linux ecos Linux ecos ecos eco Windows RTEMS 1 Danilliu MMI TCP/IP 80486 QEMU i386 QEMU ARM POWERPC i386 IPC PC104 uc/os-ii uc/os MMI TCP/IP i386 PORT Linux ecos Linux ecos ecos ecos Email www.rtems.com RTEMS ecos RTEMS RTEMS Windows

More information

Chapter 2

Chapter 2 2 (Setup) ETAP PowerStation ETAP ETAP PowerStation PowerStation PowerPlot ODBC SQL Server Oracle SQL Server Oracle Windows SQL Server Oracle PowerStation PowerStation PowerStation PowerStation ETAP PowerStation

More information

技 巧 5: 避 免 除 以 0 的 運 算 在 做 除 的 運 算 時, 先 檢 查 除 數 的 數 值, 避 免 有 除 以 0 的 情 況 若 運 算 中 除 數 為 0,SAS 會 在 LOG 中 註 記 提 醒 並 將 運 算 結 果 設 定 為 遺 漏 值, 減 慢 程 式 的 執 行

技 巧 5: 避 免 除 以 0 的 運 算 在 做 除 的 運 算 時, 先 檢 查 除 數 的 數 值, 避 免 有 除 以 0 的 情 況 若 運 算 中 除 數 為 0,SAS 會 在 LOG 中 註 記 提 醒 並 將 運 算 結 果 設 定 為 遺 漏 值, 減 慢 程 式 的 執 行 提 升 SAS 效 率 的 小 技 巧 ( 二 ) 統 計 分 析 師 嚴 友 君 在 使 用 SAS 的 時 候, 效 率 的 考 量 除 了 程 式 運 行 的 時 間, 還 包 括 資 料 佔 用 的 空 間 暫 存 記 憶 體 的 使 用 量 程 式 的 長 度 與 易 讀 性 等 等 以 下 介 紹 一 些 初 學 者 容 易 應 用, 且 在 討 論 使 用 SAS 處 理 分 析 資

More information

TX-NR3030_BAS_Cs_ indd

TX-NR3030_BAS_Cs_ indd TX-NR3030 http://www.onkyo.com/manual/txnr3030/adv/cs.html Cs 1 2 3 Speaker Cable 2 HDMI OUT HDMI IN HDMI OUT HDMI OUT HDMI OUT HDMI OUT 1 DIGITAL OPTICAL OUT AUDIO OUT TV 3 1 5 4 6 1 2 3 3 2 2 4 3 2 5

More information

Computer Architecture

Computer Architecture ECE 3120 Computer Systems Assembly Programming Manjeera Jeedigunta http://blogs.cae.tntech.edu/msjeedigun21 Email: msjeedigun21@tntech.edu Tel: 931-372-6181, Prescott Hall 120 Prev: Basic computer concepts

More information

LSC操作说明

LSC操作说明 1 C H R I S T A L P H A 1-4 LSC 型 Part. No. 102041 A L P H A 2-4 LSC 型 Part. No. 10204 冷 冻 干 燥 机 操 作 说 明 新 研 制 的 LSC-8 控 制 器, 具 备 图 形 显 示 功 能, 能 以 数 据 表 形 式 显 示 参 数, 并 可 选 配 控 制 软 件 LSC-8 1/4 VGA 大 屏 幕

More information

KillTest 质量更高 服务更好 学习资料 半年免费更新服务

KillTest 质量更高 服务更好 学习资料   半年免费更新服务 KillTest 质量更高 服务更好 学习资料 http://www.killtest.cn 半年免费更新服务 Exam : 000-544 Title : DB2 9.7 Advanced DBA for LUW Version : DEMO 1 / 10 1. A DBA needs to create a federated database and configure access to join

More information

WWW PHP Comments Literals Identifiers Keywords Variables Constants Data Types Operators & Expressions 2

WWW PHP Comments Literals Identifiers Keywords Variables Constants Data Types Operators & Expressions 2 WWW PHP 2003 1 Comments Literals Identifiers Keywords Variables Constants Data Types Operators & Expressions 2 Comments PHP Shell Style: # C++ Style: // C Style: /* */ $value = $p * exp($r * $t); # $value

More information

ebook 165-5

ebook 165-5 3 5 6 7 8 9 [ 3. 3 ] 3. 3 S Q L S Q 4. 21 S Q L S Q L 4 S Q 5 5.1 3 ( ) 78 5-1 3-8 - r e l a t i o n t u p l e c a r d i n a l i t y a t t r i b u t e d e g r e e d o m a i n primary key 5-1 3 5-1 S #

More information

入學考試網上報名指南

入學考試網上報名指南 入 學 考 試 網 上 報 名 指 南 On-line Application Guide for Admission Examination 16/01/2015 University of Macau Table of Contents Table of Contents... 1 A. 新 申 請 網 上 登 記 帳 戶 /Register for New Account... 2 B. 填

More information

R D B M S O R D B M S R D B M S / O R D B M S R D B M S O R D B M S 4 O R D B M S R D B M 3. ORACLE Server O R A C L E U N I X Windows NT w w

R D B M S O R D B M S R D B M S / O R D B M S R D B M S O R D B M S 4 O R D B M S R D B M 3. ORACLE Server O R A C L E U N I X Windows NT w w 1 1.1 D B M S To w e r C D 1. 1 968 I B M I M S 2 0 70 Cullinet Software I D M S I M S C O D A S Y L 1971 I D M S containing hierarchy I M S I D M S I M S I B M I M S I D M S 2 2. 18 R D B M S O R D B

More information

软件测试(TA07)第一学期考试

软件测试(TA07)第一学期考试 一 判 断 题 ( 每 题 1 分, 正 确 的, 错 误 的,20 道 ) 1. 软 件 测 试 按 照 测 试 过 程 分 类 为 黑 盒 白 盒 测 试 ( ) 2. 在 设 计 测 试 用 例 时, 应 包 括 合 理 的 输 入 条 件 和 不 合 理 的 输 入 条 件 ( ) 3. 集 成 测 试 计 划 在 需 求 分 析 阶 段 末 提 交 ( ) 4. 单 元 测 试 属 于 动

More information

WWW PHP

WWW PHP WWW PHP 2003 1 2 function function_name (parameter 1, parameter 2, parameter n ) statement list function_name sin, Sin, SIN parameter 1, parameter 2, parameter n 0 1 1 PHP HTML 3 function strcat ($left,

More information

1-1 database columnrow record field 不 DBMS Access Paradox SQL Server Linux MySQL Oracle IBM Informix IBM DB2 Sybase 1-2

1-1 database columnrow record field 不 DBMS Access Paradox SQL Server Linux MySQL Oracle IBM Informix IBM DB2 Sybase 1-2 CHAPTER 1 Understanding Core Database Concepts 1-1 database columnrow record field 不 DBMS Access Paradox SQL Server Linux MySQL Oracle IBM Informix IBM DB2 Sybase 1-2 1 Understanding Core Database Concepts

More information

HCD0174_2008

HCD0174_2008 Reliability Laboratory Page: 1 of 5 Date: December 23, 2008 WINMATE COMMUNICATION INC. 9 F, NO. 111-6, SHING-DE RD., SAN-CHUNG CITY, TAIPEI, TAIWAN, R.O.C. The following merchandise was submitted and identified

More information

epub83-1

epub83-1 C++Builder 1 C + + B u i l d e r C + + B u i l d e r C + + B u i l d e r C + + B u i l d e r 1.1 1.1.1 1-1 1. 1-1 1 2. 1-1 2 A c c e s s P a r a d o x Visual FoxPro 3. / C / S 2 C + + B u i l d e r / C

More information

K7VT2_QIG_v3

K7VT2_QIG_v3 ............ 1 2 3 4 5 [R] : Enter Raid setup utility 6 Press[A]keytocreateRAID RAID Type: JBOD RAID 0 RAID 1: 2 7 RAID 0 Auto Create Manual Create: 2 RAID 0 Block Size: 16K 32K

More information

PowerPoint Presentation

PowerPoint Presentation TOEFL Practice Online User Guide Revised September 2009 In This Guide General Tips for Using TOEFL Practice Online Directions for New Users Directions for Returning Users 2 General Tips To use TOEFL Practice

More information

Microsoft Word - 021708.doc

Microsoft Word - 021708.doc 二 八 年 二 月 十 七 日 預 苦 期 第 二 主 日 主 日 崇 拜 程 序 讚 美 的 敬 拜 Worship in Praise 1. 昭 示 Call to Worship 主 禮 2. 唱 詩 Hymn 敬 拜 主 主 禮 Majesty 3. 歡 迎 Welcome 主 禮 4. 唱 詩 Singspiration 會 眾 5. 禱 告 Praise & Confession ( 讚

More information

Microsoft Word - SupplyIT manual 3_cn_david.doc

Microsoft Word - SupplyIT manual 3_cn_david.doc MR PRICE Supply IT Lynette Rajiah 1 3 2 4 3 5 4 7 4.1 8 4.2 8 4.3 8 5 9 6 10 6.1 16 6.2 17 6.3 18 7 21 7.1 24 7.2 25 7.3 26 7.4 27 7.5 28 7.6 29 7.7 30 7.8 31 7.9 32 7.10 32 7.11 33 7.12 34 1 7.13 35 7.14

More information

ebook66-15

ebook66-15 1 5 Wi n d o w s 3 17 18 15.1 Vi r t u a l A l l o c p v A d d r e s s M U L L Vi r t u a l A l l o c M E M _ TO P _ D O W N 50 MB 52 428 800 5 0 1 024 1 024 p v A d d r e s s Vi r t u a l A l l o c N

More information

Chn 116 Neh.d.01.nis

Chn 116 Neh.d.01.nis 31 尼 希 米 书 尼 希 米 的 祷 告 以 下 是 哈 迦 利 亚 的 儿 子 尼 希 米 所 1 说 的 话 亚 达 薛 西 王 朝 二 十 年 基 斯 流 月 *, 我 住 在 京 城 书 珊 城 里 2 我 的 兄 弟 哈 拿 尼 和 其 他 一 些 人 从 犹 大 来 到 书 珊 城 我 向 他 们 打 听 那 些 劫 后 幸 存 的 犹 太 人 家 族 和 耶 路 撒 冷 的 情 形

More information

快乐蜂(Jollibee)快餐连锁店 的国际扩张历程

快乐蜂(Jollibee)快餐连锁店 的国际扩张历程 Case6 Jollibee Foods Corporation Jollibee FAN Libo Case Synopsis (1) The case opens with a trigger issue focused on three investment decisions facing the international division new manager, Noli Tingzon.

More information

Fun Time (1) What happens in memory? 1 i n t i ; 2 s h o r t j ; 3 double k ; 4 char c = a ; 5 i = 3; j = 2; 6 k = i j ; H.-T. Lin (NTU CSIE) Referenc

Fun Time (1) What happens in memory? 1 i n t i ; 2 s h o r t j ; 3 double k ; 4 char c = a ; 5 i = 3; j = 2; 6 k = i j ; H.-T. Lin (NTU CSIE) Referenc References (Section 5.2) Hsuan-Tien Lin Deptartment of CSIE, NTU OOP Class, March 15-16, 2010 H.-T. Lin (NTU CSIE) References OOP 03/15-16/2010 0 / 22 Fun Time (1) What happens in memory? 1 i n t i ; 2

More information

( Version 0.4 ) 1

( Version 0.4 ) 1 ( Version 0.4 ) 1 3 3.... 3 3 5.... 9 10 12 Entities-Relationship Model. 13 14 15.. 17 2 ( ) version 0.3 Int TextVarchar byte byte byte 3 Id Int 20 Name Surname Varchar 20 Forename Varchar 20 Alternate

More information

天 主 教 輔 仁 大 學 社 會 學 系 學 士 論 文 小 別 勝 新 婚? 久 別 要 離 婚? 影 響 遠 距 家 庭 婚 姻 感 情 因 素 之 探 討 Separate marital relations are getting better or getting worse? -Exp

天 主 教 輔 仁 大 學 社 會 學 系 學 士 論 文 小 別 勝 新 婚? 久 別 要 離 婚? 影 響 遠 距 家 庭 婚 姻 感 情 因 素 之 探 討 Separate marital relations are getting better or getting worse? -Exp 天 主 教 輔 仁 大 學 社 會 學 系 學 士 論 文 小 別 勝 新 婚? 久 別 要 離 婚? 影 響 遠 距 家 庭 婚 姻 感 情 因 素 之 探 討 Separate marital relations are getting better or getting worse? -Explore the impact of emotional factors couples do not

More information

SP_ SP_03 JAVA...6 SP_10 SQL...8 SP_ SP_ SP_ SP_ SP_ SP_ SP_ SP_04.NET...33 SP_02 C...37 SP_05

SP_ SP_03 JAVA...6 SP_10 SQL...8 SP_ SP_ SP_ SP_ SP_ SP_ SP_ SP_04.NET...33 SP_02 C...37 SP_05 1 SP_01...3 SP_03 JAVA...6 SP_10 SQL...8 SP_51...12 SP_32...15 SP_53...18 SP_20...21 SP_22...24 SP_21...27 SP_23...30 SP_04.NET...33 SP_02 C...37 SP_05 FLASH...39 SP_06...42 2 SP_01 1. 8. Excel 2. 9. PowerPoint

More information

Bus Hound 5

Bus Hound 5 Bus Hound 5.0 ( 1.0) 21IC 2007 7 BusHound perisoft PC hound Bus Hound 6.0 5.0 5.0 Bus Hound, IDE SCSI USB 1394 DVD Windows9X,WindowsMe,NT4.0,2000,2003,XP XP IRP Html ZIP SCSI sense USB Bus Hound 1 Bus

More information

四川省普通高等学校

四川省普通高等学校 四 川 省 普 通 高 等 学 校 计 算 机 应 用 知 识 和 能 力 等 级 考 试 考 试 大 纲 (2013 年 试 行 版 ) 四 川 省 教 育 厅 计 算 机 等 级 考 试 中 心 2013 年 1 月 目 录 一 级 考 试 大 纲 1 二 级 考 试 大 纲 6 程 序 设 计 公 共 基 础 知 识 6 BASIC 语 言 程 序 设 计 (Visual Basic) 9

More information

Untitiled

Untitiled 目 立人1 2011 录 目 录 专家视点 权利与责任 班主任批评权的有效运用 齐学红 3 德育园地 立 沿着鲁迅爷爷的足迹 主题队活动案例 郑海娟 4 播下一颗美丽的种子 沿着鲁迅爷爷的足迹 中队活动反思 郑海娟 5 赠人玫瑰 手有余香 关于培养小学生服务意识的一些尝试和思考 孙 勤 6 人 教海纵横 2011 年第 1 期 总第 9 期 主办单位 绍兴市鲁迅小学教育集团 顾 问 编委会主任 编

More information

coverage2.ppt

coverage2.ppt Satellite Tool Kit STK/Coverage STK 82 0715 010-68745117 1 Coverage Definition Figure of Merit 2 STK Basic Grid Assets Interval Description 3 Grid Global Latitude Bounds Longitude Lines Custom Regions

More information

ebook 185-6

ebook 185-6 6 Red Hat Linux DB2 Universal Database 6.1 D B 2 Red Hat D B 2 Control Center D B 2 D B 2 D B 2 6.1 DB2 Universal Database [DB2]6.1 D B 2 O LT P O L A P D B 2 I B M P C We e k D B 2 D B 2 L i n u x Windows

More information

Oracle Database 10g: SQL (OCE) 的第一堂課

Oracle Database 10g: SQL (OCE) 的第一堂課 商 用 資 料 庫 的 第 一 堂 課 中 華 大 學 資 訊 管 理 系 助 理 教 授 李 之 中 http://www.chu.edu.tw/~leecc 甲 骨 文 俱 樂 部 @Taiwan Facebook 社 團 https://www.facebook.com/groups/365923576787041/ 2014/09/15 問 題 一 大 三 了, 你 為 什 麼 還 在 這

More information

基于ECO的UML模型驱动的数据库应用开发1.doc

基于ECO的UML模型驱动的数据库应用开发1.doc ECO UML () Object RDBMS Mapping.Net Framework Java C# RAD DataSetOleDbConnection DataGrod RAD Client/Server RAD RAD DataReader["Spell"].ToString() AObj.XXX bug sql UML OR Mapping RAD Lazy load round trip

More information

投资高企 把握3G投资主题

投资高企 把握3G投资主题 行 业 研 究 东 兴 证 券 股 份 有 限 公 司 证 券 研 究 报 告 维 持 推 荐 白 酒 行 业 食 品 饮 料 行 业 2016 年 第 21 周 周 报 投 资 摘 要 : 上 周 市 场 表 现 和 下 周 投 资 策 略 上 周 食 品 饮 料 行 业 指 数 下 跌 0.89%, 跑 输 沪 深 300 指 数 1 个 百 分 点 食 品 饮 料 细 分 行 业 1 个 上

More information

ebook140-11

ebook140-11 11 VPN Windows NT4 B o r d e r M a n a g e r VPN VPN V P N V P N V P V P N V P N TCP/IP 11.1 V P N V P N / ( ) 11.1.1 11 V P N 285 2 3 1. L A N LAN V P N 10MB 100MB L A N VPN V P N V P N Microsoft PPTP

More information

K301Q-D VRT中英文说明书141009

K301Q-D VRT中英文说明书141009 THE INSTALLING INSTRUCTION FOR CONCEALED TANK Important instuction:.. Please confirm the structure and shape before installing the toilet bowl. Meanwhile measure the exact size H between outfall and infall

More information

untitled

untitled 2006 6 Geoframe Geoframe 4.0.3 Geoframe 1.2 1 Project Manager Project Management Create a new project Create a new project ( ) OK storage setting OK (Create charisma project extension) NO OK 2 Edit project

More information

C/C++ - 文件IO

C/C++ - 文件IO C/C++ IO Table of contents 1. 2. 3. 4. 1 C ASCII ASCII ASCII 2 10000 00100111 00010000 31H, 30H, 30H, 30H, 30H 1, 0, 0, 0, 0 ASCII 3 4 5 UNIX ANSI C 5 FILE FILE 6 stdio.h typedef struct { int level ;

More information

C/C++语言 - 运算符、表达式和语句

C/C++语言 - 运算符、表达式和语句 C/C++ Table of contents 1. 2. 3. 4. C C++ 5. 6. 7. 1 i // shoe1.c: # include # define ADJUST 7. 64 # define SCALE 0. 325 int main ( void ) { double shoe, foot ; shoe = 9. 0; foot = SCALE * shoe

More information

27 :OPC 45 [4] (Automation Interface Standard), (Costom Interface Standard), OPC 2,,, VB Delphi OPC, OPC C++, OPC OPC OPC, [1] 1 OPC 1.1 OPC OPC(OLE f

27 :OPC 45 [4] (Automation Interface Standard), (Costom Interface Standard), OPC 2,,, VB Delphi OPC, OPC C++, OPC OPC OPC, [1] 1 OPC 1.1 OPC OPC(OLE f 27 1 Vol.27 No.1 CEMENTED CARBIDE 2010 2 Feb.2010!"!!!!"!!!!"!" doi:10.3969/j.issn.1003-7292.2010.01.011 OPC 1 1 2 1 (1., 412008; 2., 518052), OPC, WinCC VB,,, OPC ; ;VB ;WinCC Application of OPC Technology

More information

RUN_PC連載_8_.doc

RUN_PC連載_8_.doc PowerBuilder 8 (8) Web DataWindow ( ) DataWindow Web DataWindow Web DataWindow Web DataWindow PowerDynamo Web DataWindow / Web DataWindow Web DataWindow Wizard Web DataWindow Web DataWindow DataWindow

More information

Contents Financial Summary and Forecast 1 Sales Breakdown by Product Category 3 Sales Breakdown by Region 5 Breakdown of Key Expenses 7 Nonop

Contents Financial Summary and Forecast 1 Sales Breakdown by Product Category 3 Sales Breakdown by Region 5 Breakdown of Key Expenses 7 Nonop 15 16 31 Contents Financial Summary and Forecast 1 Sales Breakdown by Product Category 3 Sales Breakdown by Region 5 Breakdown of Key Expenses 7 Nonoperating Income and Expenses 7 Employees at the Term

More information

epub 61-6

epub 61-6 6 We b 6.1 6.1.1 R e c o r d s e t 6-1 6-1 6.1.2 166 Dreamweaver UltraDev 6-2 6-2 6-3 3 6-3 I I S 6 167 Tr a i n M i s 6-4 6-4 6.1.3 10 000 1 K 10 000K 10 M 6-5 Dreamweaver UltraDev Repeat Region 6-5 168

More information

ebook70-11

ebook70-11 11 L i n u x p i n e M e s s e n g e r P P P I S 11.1 s e n d m a i l U N I X O p e n L i n u x U N I X O p e n L i n u x O p e n L i n u x s e n d m a i l O p e n L i n u x ( 11-1 ) 11-1 O p e n L i n

More information

IBM Rational ClearQuest Client for Eclipse 1/ IBM Rational ClearQuest Client for Ecl

IBM Rational ClearQuest Client for Eclipse   1/ IBM Rational ClearQuest Client for Ecl 1/39 Balaji Krish,, IBM Nam LeIBM 2005 4 15 IBM Rational ClearQuest ClearQuest Eclipse Rational ClearQuest / Eclipse Clien Rational ClearQuest Rational ClearQuest Windows Web Rational ClearQuest Client

More information

(baking powder) 1 ( ) ( ) 1 10g g (two level design, D-optimal) 32 1/2 fraction Two Level Fractional Factorial Design D-Optimal D

(baking powder) 1 ( ) ( ) 1 10g g (two level design, D-optimal) 32 1/2 fraction Two Level Fractional Factorial Design D-Optimal D ( ) 4 1 1 1 145 1 110 1 (baking powder) 1 ( ) ( ) 1 10g 1 1 2.5g 1 1 1 1 60 10 (two level design, D-optimal) 32 1/2 fraction Two Level Fractional Factorial Design D-Optimal Design 1. 60 120 2. 3. 40 10

More information

1.ai

1.ai HDMI camera ARTRAY CO,. LTD Introduction Thank you for purchasing the ARTCAM HDMI camera series. This manual shows the direction how to use the viewer software. Please refer other instructions or contact

More information

Value Chain ~ (E-Business RD / Pre-Sales / Consultant) APS, Advanc

Value Chain ~ (E-Business RD / Pre-Sales / Consultant) APS, Advanc Key @ Value Chain fanchihmin@yahoo.com.tw 1 Key@ValueChain 1994.6 1996.6 2000.6 2000.10 ~ 2004.10 (E- RD / Pre-Sales / Consultant) APS, Advanced Planning & Scheduling CDP, Collaborative Demand Planning

More information

Contents Financial Summary and Forecast 1 Sales Breakdown by Product Category 3 Sales Breakdown by Region 5 Breakdown of Key Expenses 7 N

Contents Financial Summary and Forecast 1 Sales Breakdown by Product Category 3 Sales Breakdown by Region 5 Breakdown of Key Expenses 7 N 169 17228 Contents Financial Summary and Forecast 1 Sales Breakdown by Product Category 3 Sales Breakdown by Region 5 Breakdown of Key Expenses 7 Nonoperating Income and Expenses 7 Number of Employees

More information

[ 13 年 12 月 06 日, 下 午 6 点 24 分 ] Intel Hosts 新 加 入 的 同 学 们, 快 去 听 听 在 线 宣 讲 会 哦, 同 时 完 成 页 面 下 方 有 奖 调 查, 就 有 资 格 参 与 大 奖 抽 取 啦! [ 13 年 12 月 06 日, 下 午

[ 13 年 12 月 06 日, 下 午 6 点 24 分 ] Intel Hosts 新 加 入 的 同 学 们, 快 去 听 听 在 线 宣 讲 会 哦, 同 时 完 成 页 面 下 方 有 奖 调 查, 就 有 资 格 参 与 大 奖 抽 取 啦! [ 13 年 12 月 06 日, 下 午 China Career Fair: To Know a Different Intel Time Participants Chat Transcript [ 13 年 12 月 06 日, 下 午 6 点 00 分 ] Participant Hi [ 13 年 12 月 06 日, 下 午 6 点 00 分 ] Intel Hosts 大 家 好! [ 13 年 12 月 06 日, 下 午

More information

Microsoft Word - 3D手册2.doc

Microsoft Word - 3D手册2.doc 第 一 章 BLOCK 前 处 理 本 章 纲 要 : 1. BLOCK 前 处 理 1.1. 创 建 新 作 业 1.2. 设 定 模 拟 控 制 参 数 1.3. 输 入 对 象 数 据 1.4. 视 图 操 作 1.5. 选 择 点 1.6. 其 他 显 示 窗 口 图 标 钮 1.7. 保 存 作 业 1.8. 退 出 DEFORMTM3D 1 1. BLOCK 前 处 理 1.1. 创 建

More information

ebook70-19

ebook70-19 1 9 S t a r O ff i c e Star Division S t a r O ff i c e h t t p / / w w w. s t a r d i v i s i o n. c o m S t a r O ff i c e O p e n L i n u x O p e n L i n u x StarOffice S t a r O ff i c e S t a r O

More information

UDC Empirical Researches on Pricing of Corporate Bonds with Macro Factors 厦门大学博硕士论文摘要库

UDC Empirical Researches on Pricing of Corporate Bonds with Macro Factors 厦门大学博硕士论文摘要库 10384 15620071151397 UDC Empirical Researches on Pricing of Corporate Bonds with Macro Factors 2010 4 Duffee 1999 AAA Vasicek RMSE RMSE Abstract In order to investigate whether adding macro factors

More information