自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

Yawen's Study Notes

I will post my notes and projects analysis regularly.

  • 博客(62)
  • 收藏
  • 关注

原创 【项目管理】投资回报率 ROI(Return on Investment)

FormulaROI = Net profit / total investment X 100%投资回报率 = 利润 / 总量 x 100%一段时间内,在某一数值下,收入与投入的比例(通过投资返回的价值)。数值越高证明该投入越有价值管理人员必须通过投资和现有财产获得利润Can be used in conjunction with ROR(rate of return) ->...

2019-07-25 00:08:25 4701

原创 【PL/SQL】 Oracle procedure: Hello world

set serveroutput on/* practice 9 *//* 1 */create or replace procedure greet ISbegin dbms_output.put_line('hello world'); dbms_output.put_line('today is : ' || to_char(sysdate, 'dd-MON-y...

2019-06-20 22:12:42 145

原创 【PL/SQL】CURSOR

set pagesize 120set serveroutput ondeclarec_id employees.employee_id%type;c_ln employees.last_name%type;c_s employees.salary%type;cursor cc isselect employee_id, last_name, salaryfrom employee...

2019-06-20 17:36:46 216

原创 【PL/SQL】ME IN PROCEDURE Analysis & Example | oracle数据库: 用procedure合并数据的案例分析GE

set pagesize 120;/* procedure practice */--display original table create table tempid ASselect employee_id, last_name, salary from employeeswhere employee_id > 100 and employee_id < 110;...

2019-06-20 17:01:59 118

原创 PL/SQL】DELETE IN PROCEDURE Analysis & Example | oracle数据库: 用procedure删除数据的案例分析

/* procedure practice */--display original table select * from regions;drop sequence s_regions;--ceshi procedurecreate or replace procedure add_ceshi( p_id regions.region_id%type, p_name...

2019-06-20 15:07:44 143

原创 【PL/SQL】 ROLLBACK WHEN EXECUTE A PROCEDURE Analysis & Output | oracle数据库: 回滚案例的输出与分析

/* procedure practice */--display original table select * from regions;--ceshi procedurecreate or replace procedure add_ceshi( p_id regions.region_id%type, p_name regions.region_name%type...

2019-06-20 05:38:07 114

原创 【PL/SQL】 UPDATE IN PROCEDURE Analysis & Example | oracle数据库: 用procedure修改数据的案例分析

/* procedure practice */--display original table select * from regions;--ceshi procedurecreate or replace procedure add_ceshi( p_id regions.region_id%type, p_name regions.region_name%type...

2019-06-20 05:23:09 143

原创 【PL/SQL】 INSERT IN PROCEDURE Analysis & Example | oracle数据库: 用procedure插入数据的案例分析

/* procedure practice */--display original table select * from regions;--test sequence before declare the proceduredrop sequence s_regions;create sequence s_regions start with 12 increme...

2019-06-20 04:28:50 198

原创 【PL/SQL】ORACLE学习心路历程

2019-06-09 11:58:26 100

原创 【AVL】平衡二叉树

AVL-height balanced BST-Each node must maintain the height of its subtree—Insertion AlgorithmRegular steps +BST-this new node has the height of 1- work out way back up to the root- calculate ba...

2019-06-05 00:05:06 163

原创 Conditionals/ loops/ case selectors(case expressions) UC

Conditionals/ loops/ case selectors(case expressions)IF condition THENStatement;ELSEIF condition THENStatement;ELSEStatement;END IF;IF statement only reflect to true(false || null)case select...

2019-06-05 00:02:30 89

原创 【PL/SQL】Composite Data Type II

Composite Data Types-can hold multiple data-have logical connection-record:-Must contain one or more component( field/ column )-similar to structure-attribute &ROWTYPE:-declare a variable a...

2019-06-05 00:00:38 97

原创 【PL/SQL】Cursor

Explicit cursor functions:-Can perform row-by-row processing beyond the first row returned by a query-Keep track of the row that is currently being processed-Enable the programmer to manually contr...

2019-05-31 18:27:33 89

原创 【PL/SQL】Composite Data Type

Scalar data type only holds one valueComposite Data TypesCan hold multiple values (unlike scalar types)Are of two types:–  PL/SQL recordsused to treat related but dissimilar data as a logica...

2019-05-31 18:13:26 171

原创 【PL/SQL】Control structure example

Loop example1)SELECT NVL(ROUND(salary/1000), 0) INTO v_salFROM emp WHERE employee_id = v_empno;FOR i IN 1…v_salLOOPv_asterisk := v_asterisk ||’*’;END LOOP;UPDATE emp SET stars = v_asteriskW...

2019-05-31 17:06:28 77

原创 【PL/SQL】Control structure

IF:IF condition THEN statements;[ELSIF condition THEN statements;][ELSE statements;]END IF;Case expressionappraisal := CASE v_gradeappraisal := CASECASE v_mngidFor:Do not reference the coun...

2019-05-31 17:05:37 140

原创 【PL/SQL】Insert/ update/ delete/ merge

Insert:BEGININSERT INTO employees(employee_id, first_name, last_name, email, hire_date, job_id, salary)VALUES(employees_seq.NEXTVAL, ‘Ruth’, ‘Cores’, ‘RCORES’,CURRENT_DATE, ‘AD_ASST’, 4000);END; ...

2019-05-31 15:35:54 166

原创 【PL/SQL】expression & common function

Lexical units:-Are building blocks of any PL/SQL block-Are sequences of characters including letters, numerals, tabs, spaces, returns, and symbols-Can be classified as:Identifiers: v_fname, c_perc...

2019-05-31 14:46:42 81

原创 【PL/SQL】常见print out格式

DisplayDBMS_OUTPUT.PUT_LINE()Set serveroutput onprocedure allows you to write data to flat file or to direct your PL/SQL output to a screen.PRINTset autoprint onBind VariableHeadingset heading...

2019-05-31 08:07:55 752

原创 【PL/SQL】类型和变量 | Data Type & Variables

Block type:Anonymous:declare??Subprograms are complementary to anonymous blocks.Procedure:procedure name isFunction: function name return datatype isvariable:Temporary storage of dataManipulati...

2019-05-31 08:04:46 252

原创 【PL/SQL】PL/SQL和SQL的区别

PL/SQL:-Procedural Language extension to SQL-Oracle Corporation’s standard data access language for relational databases-Seamlessly integrates procedural constructs with SQL-Block structure to exc...

2019-05-30 16:29:00 372

原创 【SSAS】SQL Server Analysis services | 【数据分析 (一) 】名词解释

Words DefinitionSSDT:SQL Server Data ToolsSSAS:SQL Server Analysis servicesAnalysis Services projectA project based on an Analysis Services multidimensional model template。SolutionIncludes ...

2019-05-23 23:22:40 1019

原创 table/ sort/ tree

HashTableAbstract datatypefaster data retrieval,encrypt and decrypt digital signaturesa technique that is used to uniquely identify a specific object from a group of similar objects.A hash table ...

2019-04-16 22:38:54 191

原创 【C++ 算法笔记】 Sort的六种方法 【二】Quick Sort

IMPORTANTTHIS IS NOTE I MADE WHEN STUDY C++ ALGORITHMTHIS NOTE WOULD ONLY HELP U SPEND LESS TIME ON UNDERSTNDING THE ALGORITHM AND CODE IMPLEMENTATIONALL WORDS IN " " ARE DIRECTLY REFERENCEALL COD...

2019-04-16 01:00:25 144

原创 【C++ 算法笔记】 Sort的六种方法 【二】Merge Sort

IMPORTANTTHIS IS NOTE I MADE WHEN STUDY C++ ALGORITHMTHIS NOTE WOULD ONLY HELP U SPEND LESS TIME ON UNDERSTNDING THE ALGORITHM AND CODE IMPLEMENTATIONALL WORDS IN " " ARE DIRECTLY REFERENCEALL COD...

2019-04-15 09:12:42 158

原创 【C++算法笔记】Sort的六种方法 【一】

IMPORTANTTHIS IS NOTE I MADE WHEN STUDY C++ ALGORITHMTHIS NOTE WOULD ONLY HELP U SPEND LESS TIME ON UNDERSTNDING THE ALGORITHM AND CODE IMPLEMENTATIONALL WORDS IN " " ARE DIRECTLY REFERENCEALL COD...

2019-04-15 07:40:16 327

原创 再见rpgle

笔记整理过的部分已经全部po出来了。。。如果有哪位仁兄在挣扎这玩意的请私戳我,我的资料都给你。。。过去的四个月里,我打开IBM网站的次数比我打开微信的次数都还多。。。不过再见!再碰rpgle或者clle这种年纪比我爹还大的东西我就是煞笔!再见!(前提是过。。。这种东西简直反人类,二十年前的程序员真是辛苦了。。。...

2019-04-15 03:48:18 478 7

原创 IBM [CLLE] 所有command一网打尽系列 [持续更新]

IBM 官方手册 clle obj 相关指令

2019-04-15 03:39:55 869

原创 IBM [RPGLE] Declaration under Free Format

File:DCL-FData:DCL-DSDCL-SDCL-CDCL-Pi procedure interface(actual parameter)DCL-PR prototypeCTL-OPT Control optionAvoid H spaceEXT/EXTNAME(‘…’) Externally described data structure*N unname...

2019-04-15 03:36:50 261

原创 IBM [RPGLE] Words specification under free format

File description(F)File name |file type(I) | I(INPUT)file designataion§ |end of field(E) | E(Externally described)file addition(A) |sequence(S) |File formate(F) |Record length® |Limited proce...

2019-04-15 03:35:10 148

原创 IBM Logic file和 Physical file 的异同

The following keywords are valid only for simple and multiple format logical files: PFILE REFACCPTHThe following keywords are valid only for join logical files:JDFTVALJDUPSEQJFILEJFL...

2019-04-15 03:32:46 201

原创 IBM function key &^ datatype

F1 frequently used as a help keyF3 exitF4 prompting a command presemting a screen that showing how to useF5 freshF9 retried previous commandF12 cancel.ptSource code*pgm.rpgleCompiled program...

2019-04-15 03:31:05 108

原创 IBM Iseries Terminology

SLS: single level storageObejecrs are referenced, stored and retrieved by name, without regard to their physical locationDatabase systemBuilt inDb2 USB for i series does not have a data breakage...

2019-04-15 03:29:48 189

原创 IBM DB2 部分指令

WRKSBMJOB work with submitted JoWRKACTJOBWrRKOBJWRKOBJPDMCRTSRCPQ create source physical fileCHGCURDIR: change current directoryDMPDNSJRNF: Dumps dns journal file to human readable formCRTLI...

2019-04-15 03:27:42 179

原创 oracle notes(uc)

Datafile: [.ora/.dbf]Physical exist. Physical storage unit. Stored inside tablespace.A datafile cannot delete, once added into a tablespace. (delete the tablespace who belongs to)Relation:One data...

2019-04-11 17:20:48 295

原创 JAVA Diff between TCP&UDP (UC)

TCP (Transmission control protocol)Connection based protocolProvide reliable flow of data between two computersUDP(User Datagram Protocol)Send independent packets of data(datagram)Send message fr...

2019-04-09 00:40:55 99

原创 JAVAThread Synchronization | 线程的同步 (UC)

同步的好处ThesynchronizationismainlyusedtoPrevent thread interference.Prevent consistency problem.种类TherearetwotypesofsynchronizationProcess Synchronization.Thread Synchronization.Thread...

2019-04-03 13:01:19 284

原创 Algorithm Notes: Red Black Tree | 算法学习 红黑树

Red Black Tree | 红黑树BSTEvery node must have a colour of either red or blackMust maintain 4 colouring rulesEvery node is red of blackRoot node is always blackRed node must have black childrenT...

2019-04-03 01:48:19 134

原创 一个小目标QAQ

这是一个小目flag标Java 系列一共二十五篇树莓派还有六个半cmd 还要挣扎一下oracle完全没动。。。emulator?哦 我都忘了这么一看简直绝望。。。容我挣扎一下吧。。。.....突然想起还有trees和大数据…天要亡我!...

2019-04-02 19:27:17 98

原创 Java socket Client-Servers对话框实现(GUI)

就这么一点东西花了我俩小时。。。嘤!注释晚点补上需要用到eclipse里面的window builder插件(market里面大概率会卡,最后官网URL下载首先我们需要一个GUI panel:package clientserver;public class GUI { static window w; static window2 w2; static server ss;...

2019-04-02 18:28:08 548

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除