资料整理——Oracle基本概念、术语(Glossary from Oracle Concepts)——第十一部分

“吾生也有涯,而知也无涯”,我觉得一个理想的知行合一模型是:理论学习=》知识水平提高=》实践、应用=》再学习...

这个模型就像一个具有正反馈的螺旋上升通道,写技术博客其实也算是其中的一个重要节点。

概念中文描述
PDB/non-CDB compatibility guaranteePDB兼容性保证In the multitenant architecture, the guarantee that a PDB behaves the same as a non-CDB as seen from a client connecting with Oracle Net.
permanent tablespace永久表空间(与临时表相对)A tablespace that contains persistent schema objects. Every tablespace that is not a temporary tablespace is a permanent tablespace.
PGA (Program global area)PGA (程序全局区)A memory buffer that contains data and control information for a server process. See also SGA.
physical guess物理推测The physical rowid of an index entry when it was first made. Oracle Database can use physical guesses to probe directly into the leaf block of any index-organized table, bypassing the primary key search.
plan generator计划生成程序The part of the optimizer that tries different access paths, join methods, and join orders for a given query block to find the plan with the lowest cost.
PL/SQL (Procedural Language/SQL)PL/SQLThe Oracle Database procedural language extension to SQL. PL/SQL enables you to mix SQL statements with programmatic constructs such as procedures, functions, and packages.
PL/SQL anonymous blockPL/SQL匿名块A PL/SQL block that appears in an application, but is not named or stored in the database. In many applications, PL/SQL blocks may appear wherever SQL statements can appear.
PL/SQL collectionPL/SQL集合An ordered group of elements, all of the same type. Each element has a unique subscript that determines its position in the collection.
PL/SQL enginePL/SQL引擎The tool used to define, compile, and run PL/SQL program units. This engine is a special component of many Oracle products, including Oracle Database.
PL/SQL functionPL/SQL函数A schema object that consists of a set of SQL statements and other PL/SQL constructs, grouped together, stored in the database, and run as a unit to solve a specific problem or perform a set of related tasks, and that always returns a single value to the caller.
PL/SQL function result cachePL/SQL函数结果缓存A subset of the server result cache that stores function result sets.
PL/SQL packagePL/SQL包A logical grouping of related PL/SQL types, variables, and subprograms.
PL/SQL procedurePL/SQL过程A schema object that consists of a set of SQL statements and other PL/SQL constructs, grouped together, stored in the database, and run as a unit to solve a specific problem or perform a set of related tasks.
PL/SQL recordPL/SQL记录A composite variable that can store data values of different types, similar to a struct type in C, C++, or Java. Records are useful for holding data from table rows, or specific columns from table rows.
PL/SQL subprogramPL/SQL子程序A named PL/SQL block that can be invoked with a set of parameters
pragma编译指令A directive that instructs the compiler to perform a compilation option. For example, the pragma AUTONOMOUS_TRANSACTION instructs the database that this procedure, when executed, is to be executed as a new autonomous transaction that is independent of its parent transaction.
precision精度The total number of digits in a floating-point number. You specify a fixed-point number in the form NUMBER(p,s), where p represents the precision.
precompiler预编译A programming tool that enables you to embed SQL statements in a high-level source program written in a language such as C, C++, or COBOL.
predicate谓语The WHERE condition in a SQL statement.
prefix compression前缀压缩The elimination of repeated occurrence of primary key column values in an index-organized table. Prefix compression was formerly known as key compression.
primary key主键The column or set of columns that uniquely identifies a row in a table. Only one primary key can be defined for each table.
primary key constraint主键约束An integrity constraint that disallows duplicate values and nulls in a column or set of columns.
private SQL area私有SQL区An area in memory that holds a parsed statement and other information for processing. The private SQL area contains data such as bind variable values, query execution state information, and query execution work areas.
privilege权限The right to run a particular type of SQL statement, or the right to access an object that belongs to another user, run a PL/SQL package, and so on. The types of privileges are defined by Oracle Database.
privilege analysis权限分析A security mechanism that captures privilege usage for a database according to a specified condition. For example, you can find the privileges that a user exercised during a specific database session.
procedural language过程语言A language that describes how things should be done, not what should be done (as in declarative languages). C++ and Java are examples of procedural languages.
process进程A mechanism in an operating system that can run a series of steps. By dividing the work of Oracle Database and database applications into several processes, multiple users and applications can connect to a single database instance simultaneously. See also background process; Oracle process; client process.
process monitor (PMON)PMON (进程监视进程)The background process that monitors the other background processes and performs process recovery when a server or dispatcher process terminates abnormally.
program interface程序接口The software layer between a database application and Oracle Database.
protected database受保护数据库A client database whose backups are managed by a Recovery Appliance.
protection policy保护策略A group of attributes that control how a Recovery Appliance stores and maintains backup data. Each protected database is assigned to exactly one protection policy, which controls all aspects of backup processing for that client.
pseudocolumn伪列A column that is not stored in a table, yet behaves like a table column.
query查询An operation that retrieves data from tables or views. For example, SELECT * FROM employees is a query. See also implicit query; subquery.
query block查询块A top-level SELECT statement, subquery, or unmerged view.
query coordinator查询协调进程In parallel execution, the user session or shadow process that coordinates the parallel execution servers. The parallel execution servers performs each operation in parallel if possible. When the parallel servers are finished executing the statement, the query coordinator performs any portion of the work that cannot be executed in parallel. Finally, the query coordinator returns any results to the user.
query optimization查询优化The process of choosing the most efficient means of executing a SQL statement.
query plan查询计划The execution plan used to execute a query.
query rewrite查询重写An optimization technique that transforms a user request written in terms of master tables into a semantically equivalent request that includes materialized views.
深度学习是机器学习的一个子领域,它基于人工神经网络的研究,特别是利用多层次的神经网络来进行学习和模式识别。深度学习模型能够学习数据的高层次特征,这些特征对于图像和语音识别、自然语言处理、医学图像分析等应用至关重要。以下是深度学习的一些关键概念和组成部分: 1. **神经网络(Neural Networks)**:深度学习的基础是人工神经网络,它是由多个层组成的网络结构,包括输入层、隐藏层和输出层。每个层由多个神经元组成,神经元之间通过权重连接。 2. **前馈神经网络(Feedforward Neural Networks)**:这是最常见的神经网络类型,信息从输入层流向隐藏层,最终到达输出层。 3. **卷积神经网络(Convolutional Neural Networks, CNNs)**:这种网络特别适合处理具有网格结构的数据,如图像。它们使用卷积层来提取图像的特征。 4. **循环神经网络(Recurrent Neural Networks, RNNs)**:这种网络能够处理序列数据,如时间序列或自然语言,因为它们具有记忆功能,能够捕捉数据中的时间依赖性。 5. **长短期记忆网络(Long Short-Term Memory, LSTM)**:LSTM 是一种特殊的 RNN,它能够学习长期依赖关系,非常适合复杂的序列预测任务。 6. **生成对抗网络(Generative Adversarial Networks, GANs)**:由两个网络组成,一个生成器和一个判别器,它们相互竞争,生成器生成数据,判别器评估数据的真实性。 7. **深度学习框架**:如 TensorFlow、Keras、PyTorch 等,这些框架提供了构建、训练和部署深度学习模型的工具和库。 8. **激活函数(Activation Functions)**:如 ReLU、Sigmoid、Tanh 等,它们在神经网络中用于添加非线性,使得网络能够学习复杂的函数。 9. **损失函数(Loss Functions)**:用于评估模型的预测与真实值之间的差异,常见的损失函数包括均方误差(MSE)、交叉熵(Cross-Entropy)等。 10. **优化算法(Optimization Algorithms)**:如梯度下降(Gradient Descent)、随机梯度下降(SGD)、Adam 等,用于更新网络权重,以最小化损失函数。 11. **正则化(Regularization)**:技术如 Dropout、L1/L2 正则化等,用于防止模型过拟合。 12. **迁移学习(Transfer Learning)**:利用在一个任务上训练好的模型来提高另一个相关任务的性能。 深度学习在许多领域都取得了显著的成就,但它也面临着一些挑战,如对大量数据的依赖、模型的解释性差、计算资源消耗大等。研究人员正在不断探索新的方法来解决这些问题。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值