⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 predicatesintoviews.out

📁 derby database source code.good for you.
💻 OUT
📖 第 1 页 / 共 5 页
字号:
	Number of opens = 1	Rows seen = 2	Rows filtered = 0	restriction = false	projection = true		constructor time (milliseconds) = 0		open time (milliseconds) = 0		next time (milliseconds) = 0		close time (milliseconds) = 0		restriction time (milliseconds) = 0		projection time (milliseconds) = 0	Source result set:		Grouped Aggregate ResultSet:		Number of opens = 1		Rows input = 32		Has distinct aggregate = false		In sorted order = false		Sort information: 			Number of rows input=32			Number of rows output=2			constructor time (milliseconds) = 0			open time (milliseconds) = 0			next time (milliseconds) = 0			close time (milliseconds) = 0		Source result set:			Project-Restrict ResultSet (5):			Number of opens = 1			Rows seen = 32			Rows filtered = 0			restriction = false			projection = true				constructor time (milliseconds) = 0				open time (milliseconds) = 0				next time (milliseconds) = 0				close time (milliseconds) = 0				restriction time (milliseconds) = 0				projection time (milliseconds) = 0			Source result set:				Hash Join ResultSet:				Number of opens = 1				Rows seen from the left = 8				Rows seen from the right = 32				Rows filtered = 0				Rows returned = 32					constructor time (milliseconds) = 0					open time (milliseconds) = 0					next time (milliseconds) = 0					close time (milliseconds) = 0				Left result set:					Table Scan ResultSet for T1 at serializable isolation level using share table locking chosen by the optimizer					Number of opens = 1					Rows seen = 8					Rows filtered = 0					Fetch Size = 1						constructor time (milliseconds) = 0						open time (milliseconds) = 0						next time (milliseconds) = 0						close time (milliseconds) = 0						next time in milliseconds/row = 0					scan information: 						Bit set of columns fetched={0, 1}						Number of columns fetched=2						Number of pages visited=1						Number of rows qualified=8						Number of rows visited=8						Scan type=heap						start position: null						stop position: null						qualifiers:None				Right result set:					Hash Scan ResultSet for T1 at serializable isolation level using share table locking: 					Number of opens = 8					Hash table size = 2					Hash key is column number 0					Rows seen = 32					Rows filtered = 0						constructor time (milliseconds) = 0						open time (milliseconds) = 0						next time (milliseconds) = 0						close time (milliseconds) = 0						next time in milliseconds/row = 0					scan information: 						Bit set of columns fetched={0, 1}						Number of columns fetched=2						Number of pages visited=1						Number of rows qualified=8						Number of rows visited=8						Scan type=heap						start position: null						stop position: null						scan qualifiers:None						next qualifiers:Column[0][0] Id: 0Operator: =Ordered nulls: falseUnknown return value: falseNegate comparison result: falseij> select * from cv1;C1         |C2         -----------------------1          |3          2          |4          ij> select * from cv1 where c1 = 1;C1         |C2         -----------------------1          |3          ij> values SYSCS_UTIL.SYSCS_GET_RUNTIMESTATISTICS();1                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------Statement Name: 	nullStatement Text: 	select * from cv1 where c1 = 1Parse Time: 0Bind Time: 0Optimize Time: 0Generate Time: 0Compile Time: 0Execute Time: 0Begin Compilation Timestamp : nullEnd Compilation Timestamp : nullBegin Execution Timestamp : nullEnd Execution Timestamp : nullStatement Execution Plan Text: Project-Restrict ResultSet (5):Number of opens = 1Rows seen = 1Rows filtered = 0restriction = falseprojection = true	constructor time (milliseconds) = 0	open time (milliseconds) = 0	next time (milliseconds) = 0	close time (milliseconds) = 0	restriction time (milliseconds) = 0	projection time (milliseconds) = 0Source result set:	Grouped Aggregate ResultSet:	Number of opens = 1	Rows input = 4	Has distinct aggregate = false	In sorted order = false	Sort information: 		Number of rows input=4		Number of rows output=1		constructor time (milliseconds) = 0		open time (milliseconds) = 0		next time (milliseconds) = 0		close time (milliseconds) = 0	Source result set:		Project-Restrict ResultSet (4):		Number of opens = 1		Rows seen = 4		Rows filtered = 0		restriction = false		projection = true			constructor time (milliseconds) = 0			open time (milliseconds) = 0			next time (milliseconds) = 0			close time (milliseconds) = 0			restriction time (milliseconds) = 0			projection time (milliseconds) = 0		Source result set:			Project-Restrict ResultSet (3):			Number of opens = 1			Rows seen = 4			Rows filtered = 0			restriction = false			projection = true				constructor time (milliseconds) = 0				open time (milliseconds) = 0				next time (milliseconds) = 0				close time (milliseconds) = 0				restriction time (milliseconds) = 0				projection time (milliseconds) = 0			Source result set:				Table Scan ResultSet for T1 at serializable isolation level using share table locking chosen by the optimizer				Number of opens = 1				Rows seen = 4				Rows filtered = 0				Fetch Size = 1					constructor time (milliseconds) = 0					open time (milliseconds) = 0					next time (milliseconds) = 0					close time (milliseconds) = 0					next time in milliseconds/row = 0				scan information: 					Bit set of columns fetched={0, 1}					Number of columns fetched=2					Number of pages visited=1					Number of rows qualified=4					Number of rows visited=8					Scan type=heap					start position: null					stop position: null					qualifiers:Column[0][0] Id: 0Operator: =Ordered nulls: falseUnknown return value: falseNegate comparison result: falseij> create index t1_c1 on t1(c1);0 rows inserted/updated/deletedij> select c1, c2 from sv1 where c1 = 1 order by c1, c2;C1         |C2         -----------------------1          |1          1          |1          1          |2          1          |2          ij> values SYSCS_UTIL.SYSCS_GET_RUNTIMESTATISTICS();1                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------Statement Name: 	nullStatement Text: 	select c1, c2 from sv1 where c1 = 1 order by c1, c2Parse Time: 0Bind Time: 0Optimize Time: 0Generate Time: 0Compile Time: 0Execute Time: 0Begin Compilation Timestamp : nullEnd Compilation Timestamp : nullBegin Execution Timestamp : nullEnd Execution Timestamp : nullStatement Execution Plan Text: Sort ResultSet:Number of opens = 1Rows input = 4Rows returned = 4Eliminate duplicates = falseIn sorted order = falseSort information: 	Number of rows input=4	Number of rows output=4	constructor time (milliseconds) = 0	open time (milliseconds) = 0	next time (milliseconds) = 0	close time (milliseconds) = 0Source result set:	Project-Restrict ResultSet (4):	Number of opens = 1	Rows seen = 4	Rows filtered = 0	restriction = false	projection = true		constructor time (milliseconds) = 0		open time (milliseconds) = 0		next time (milliseconds) = 0		close time (milliseconds) = 0		restriction time (milliseconds) = 0		projection time (milliseconds) = 0	Source result set:		Project-Restrict ResultSet (3):		Number of opens = 1		Rows seen = 4		Rows filtered = 0		restriction = false		projection = true			constructor time (milliseconds) = 0			open time (milliseconds) = 0			next time (milliseconds) = 0			close time (milliseconds) = 0			restriction time (milliseconds) = 0			projection time (milliseconds) = 0		Source result set:			Index Row to Base Row ResultSet for T1:

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -