RAC 环境下spfile 下参数的修改,所有node或个别node

------+ 和没有+

SQL> create spfile='+data' from pfile='/tmp/pfile';

File created.

SQL> exit
Disconnected from Oracle Database 19c Enterprise Edition Release 19.0.0.0.0 - Production
Version 19.20.0.0.0
[oracle@rac1 ~]$ srvctl config database -d cdb
Database unique name: cdb
Database name: cdb
Oracle home: /u01/app/oracle/product/19.0.0/db_1
Oracle user: oracle
Spfile: +DATA/CDB/PARAMETERFILE/spfile.329.1157608177


SQL> create spfile='data' from pfile='/tmp/pfile';

File created.

SQL> exit
Disconnected from Oracle Database 19c Enterprise Edition Release 19.0.0.0.0 - Production
Version 19.20.0.0.0
[oracle@rac1 ~]$  srvctl config database -d cdb
Database unique name: cdb
Database name: cdb
Oracle home: /u01/app/oracle/product/19.0.0/db_1
Oracle user: oracle
Spfile: data

[oracle@rac1 dbs]$ pwd
/u01/app/oracle/product/19.0.0/db_1/dbs

-rw-r-----. 1 oracle asmadmin     6656 Jan  7 18:46 data
-rw-rw----. 1 oracle asmadmin     1544 Jan  7 18:47 hc_cdb1.dat
-rw-r-----. 1 oracle asmadmin  2097152 Jan  7 18:47 id_cdb1.dat


 

SYMPTOMS

Case 1 PGA_AGGREATE_LIMIT lowering

Starting with 12.2, if pga_aggregate_limit parameter is set to a value smaller than 2G, the instance cannot be started due to below error:

SQL> startup
ORA-01078: failure in processing system parameters
ORA-00093: pga_aggregate_limit must be between 2048M and 100000G

Case 2 RAC Instance startup failure

RAC instance startup fails with error ORA-00093 ORA-01078.

Example

ORA-00093: pga_aggregate_limit must be between 5500M and 100000G
ORA-01078: failure in processing system parameters

SOLUTION

Solution for Case 1

The workaround is to manually set pga_aggregate_limit larger than 2G.


SQL> alter system set pga_aggregate_limit = 2G;

Solution for Case 2

Check and take note of current database configuration by 'srvctl config database -db <database name>'.

Example

srvctl config database -db orcl
Database unique name: orcl
Database name: orcl
Oracle home: /u01/app/oracle/product/21.3.0
Oracle user: oracle
Spfile: +DATA/ORCL/PARAMETERFILE/spfile.280.1083267531
Password file: +DATA/ORCL/PASSWORD/pwdorcl.264.1083264595
Domain:
Start options: open
Stop options: immediate
Database role: PRIMARY
Management policy: AUTOMATIC
Server pools:
Disk Groups: DATA
...


Try login to another instance.

If login is successful, descrease PROCESSES or increase PGA_AGGREGATE_LIMIT value for the failed instance.
   
Example: Assuming the failed instance name is 'orcl1'   

alter system set pga_aggregate_limit=5800m scope=spfile sid='orcl1' --加不加这个都可以


Restart the failed instance.


   
If you cannot login to other RAC instance(s), then perform the following:

1. Open the instance alert log and move to the last successful startup time,
extract 'System parameters with non-default values' to a text init file.
   
This should contain a lower PROCESSES value.
   
Modify or add the following to file:

<instance name>.thread
<instance name>.instance_number
<instance name>.undo_tablespace
<instance name>.processes
<instance name>.pga_aggregate_limit
*.cluster_database=true
*.cluster_database_instances=<total instance number>  
   

Note: cluster_database_instances is desupported in Oracle Database 21c.--19C R20 also


Example with partial parameters

orcl1.instance_number=1
orcl2.instance_number=2
orcl1.thread=1
orcl2.thread=2
*.cluster_database=true
*.cluster_database_instances=2    <--- For versions prior to 21c
orcl1.undo_tablespace='UNDOTBS1'
orcl2.undo_tablespace='UNDOTBS2'


2. Startup the instance with the text init file

3. Create spfile '+<diskgroup name>' from pfile

4. Shutdown instance

5. From 'srvctl config database -db '<db name>' you will find a changed spfile name.

Example  

srvctl config database -db orcl
Database unique name: orcl
Database name: orcl
Oracle home: /u01/app/oracle/product/21.3.0
Oracle user: oracle
Spfile: +DATA/ORCL/PARAMETERFILE/spfile.297.1100014747
...


6. Run srvctl start database -db <db name>

------------测试

[oracle@rac1 tmp]$ srvctl stop database -d cdb
[oracle@rac1 tmp]$ srvctl start database -d cdb
[oracle@rac1 tmp]$ s
SQL> alter system  set pga_aggregate_limit=2G scope=spfile;

[oracle@rac1 tmp]$ srvctl stop database -d cdb
[oracle@rac1 tmp]$ srvctl start database -d cdb
PRCR-1079 : Failed to start resource ora.cdb.db
CRS-5017: The resource action "ora.cdb.db start" encountered the following error: 
ORA-01078: failure in processing system parameters
. For details refer to "(:CLSN00107:)" in "/u01/app/grid/diag/crs/rac1/crs/trace/crsd_oraagent_oracle.trc".

CRS-5017: The resource action "ora.cdb.db start" encountered the following error: 
ORA-01078: failure in processing system parameters
. For details refer to "(:CLSN00107:)" in "/u01/app/grid/diag/crs/rac2/crs/trace/crsd_oraagent_oracle.trc".

CRS-2674: Start of 'ora.cdb.db' on 'rac1' failed
CRS-2632: There are no more servers to try to place resource 'ora.cdb.db' on that would satisfy its placement policy
CRS-5017: The resource action "ora.cdb.db start" encountered the following error: 
ORA-01078: failure in processing system parameters
. For details refer to "(:CLSN00107:)" in "/u01/app/grid/diag/crs/rac3/crs/trace/crsd_oraagent_oracle.trc".

CRS-2674: Start of 'ora.cdb.db' on 'rac2' failed
CRS-2674: Start of 'ora.cdb.db' on 'rac3' failed
[oracle@rac1 tmp]$ s

SQL*Plus: Release 19.0.0.0.0 - Production on Sun Jan 7 17:21:55 2024
Version 19.20.0.0.0

Copyright (c) 1982, 2022, Oracle.  All rights reserved.

Connected to an idle instance.

SQL> startup force;
ORA-00093: pga_aggregate_limit must be between 5000M and 100000G
ORA-01078: failure in processing system parameters
SQL> show parameters spfile;
ORA-01034: ORACLE not available
Process ID: 0
Session ID: 0 Serial number: 0

-----------------起不来 起不来 完全起不来

SQL> show parameters spfile;
ORA-01034: ORACLE not available
Process ID: 0
Session ID: 0 Serial number: 0



[oracle@rac1 tmp]$ srvctl config database -d cdb
Database unique name: cdb
Database name: cdb
Oracle home: /u01/app/oracle/product/19.0.0/db_1
Oracle user: oracle
Spfile: +DATA/CDB/PARAMETERFILE/spfile.360.1157600503
Password file: +DATA/CDB/PASSWORD/pwdcdb.258.1148478551
Domain: cj.com
Start options: open
Stop options: immediate
Database role: PRIMARY
Management policy: AUTOMATIC
Server pools: 
Disk Groups: DATA
Mount point paths: 
Services: srv_rman
Type: RAC
Start concurrency: 
Stop concurrency: 
OSDBA group: dba
OSOPER group: oper
Database instances: cdb1,cdb2,cdb3
Configured nodes: rac1,rac2,rac3
CSS critical: no
CPU count: 0
Memory target: 0
Maximum memory: 0
Default network number for database services: 
Database is administrator managed
[oracle@rac1 tmp]$ s

SQL*Plus: Release 19.0.0.0.0 - Production on Sun Jan 7 17:23:19 2024
Version 19.20.0.0.0

Copyright (c) 1982, 2022, Oracle.  All rights reserved.

Connected to an idle instance.

SQL> create pfile='/tmp/pfile' from spfile;

SQL> create pfile='/tmp/pfile' from spfile;

File created.

SQL> exit
Disconnected
[oracle@rac1 tmp]$ vi /tmp/pfile----------------------spfile没有指定位置,不对的

SQL> create pfile='/tmp/pfile' from spfile='+DATA/CDB/PARAMETERFILE/spfile.360.1157600503';

File created.

SQL> exit
Disconnected
[oracle@rac1 tmp]$ vi /tmp/pfile
[oracle@rac1 tmp]$ s


SQL> startup pfile='/tmp/pfile';
ORACLE instance started.

Total System Global Area 1048573744 bytes
Fixed Size                  9172784 bytes
Variable Size             620756992 bytes
Database Buffers          411041792 bytes
Redo Buffers                7602176 bytes
Database mounted.
Database opened.
SQL> create spfile='+data' from pfile; 指定好刚刚的文件,from memory  如下

File created.

SQL> startup force;
ORA-00093: pga_aggregate_limit must be between 5000M and 100000G
ORA-01078: failure in processing system parameters
SQL>  create spfile='+data' from pfile='/tmp/pfile';
 create spfile='+data' from pfile='/tmp/pfile'
*
ERROR at line 1:
ORA-03113: end-of-file on communication channel
Process ID: 0
Session ID: 417 Serial number: 2613


SQL> exit
Disconnected from Oracle Database 19c Enterprise Edition Release 19.0.0.0.0 - Production
Version 19.20.0.0.0
[oracle@rac1 tmp]$ s

SQL*Plus: Release 19.0.0.0.0 - Production on Sun Jan 7 17:27:14 2024
Version 19.20.0.0.0

Copyright (c) 1982, 2022, Oracle.  All rights reserved.

Connected to an idle instance.

SQL>  create spfile='+data' from pfile='/tmp/pfile';
 create spfile='+data' from pfile='/tmp/pfile'
*
ERROR at line 1:
ORA-03113: end-of-file on communication channel
Process ID: 0
Session ID: 0 Serial number: 0


SQL>  startup pfile='/tmp/pfile';
SP2-0642: SQL*Plus internal error state 2133, context 3114:0:0
Unsafe to proceed
ORA-03114: not connected to ORACLE


SQL>  startup pfile='/tmp/pfile';
SP2-0642: SQL*Plus internal error state 2133, context 3114:0:0
Unsafe to proceed
ORA-03114: not connected to ORACLE


SQL> exit
Disconnected
[oracle@rac1 tmp]$ s

SQL*Plus: Release 19.0.0.0.0 - Production on Sun Jan 7 17:27:35 2024
Version 19.20.0.0.0

Copyright (c) 1982, 2022, Oracle.  All rights reserved.

Connected to an idle instance.

SQL>  startup pfile='/tmp/pfile';
ORACLE instance started.

Total System Global Area 1048573744 bytes
Fixed Size                  9172784 bytes
Variable Size             620756992 bytes
Database Buffers          411041792 bytes
Redo Buffers                7602176 bytes
Database mounted.
Database opened.
SQL> create spfile='+data' from pfile='/tmp/pfile';---不能偷懒,否则如上!!

注意spfile='+data'不需要全路径,这个命令后自动创建spfile并修改OCR

SQL> show parameters spfile

NAME                                 TYPE        VALUE
------------------------------------ ----------- ------------------------------
spfile                               string      +DATA/CDB/PARAMETERFILE/spfile
                                                 
.364.1157603285
[oracle@rac1 tmp]$ srvctl config database -d cdb
Database unique name: cdb
Database name: cdb
Oracle home: /u01/app/oracle/product/19.0.0/db_1
Oracle user: oracle
Spfile: +DATA/CDB/PARAMETERFILE/spfile.
364.1157603285

File created.

SQL> startup force
ORACLE instance started.

Total System Global Area 1048573744 bytes
Fixed Size                  9172784 bytes
Variable Size             620756992 bytes
Database Buffers          411041792 bytes
Redo Buffers                7602176 bytes
Database mounted.
Database opened.
SQL> exit
Disconnected from Oracle Database 19c Enterprise Edition Release 19.0.0.0.0 - Production
Version 19.20.0.0.0
[oracle@rac1 tmp]$ srvctl stop database -d cdb
srvctl start database -d cdb
[oracle@rac1 tmp]$ srvctl start database -d cdb
[oracle@rac1 tmp]$ s

SQL*Plus: Release 19.0.0.0.0 - Production on Sun Jan 7 17:30:59 2024
Version 19.20.0.0.0

Copyright (c) 1982, 2022, Oracle.  All rights reserved.


Connected to:
Oracle Database 19c Enterprise Edition Release 19.0.0.0.0 - Production
Version 19.20.0.0.0

SQL> show parameters pga;     

NAME                                 TYPE        VALUE
------------------------------------ ----------- ------------------------------
pga_aggregate_limit                  big integer 5G
pga_aggregate_target                 big integer 755M
SQL> show spparameters pga; 

SID      NAME                          TYPE        VALUE
-------- ----------------------------- ----------- ----------------------------
*        pga_aggregate_limit           big integer 5G
*        pga_aggregate_target          big integer 755M
SQL> 

------create spfile  from memory---RAC下不行 没有nodeX 后面的参数

[oracle@rac1 ~]$ grep -i instan* /tmp/pfile*
/tmp/pfile:family:dw_helper.instance_mode='read-only'
/tmp/pfile:cdb3.instance_number=3
/tmp/pfile:cdb2.instance_number=2
/tmp/pfile:cdb1.instance_number=1
/tmp/pfile1:*.instance_number=1
[oracle@rac1 ~]$ 

SQL> show parameters pga
SQL> alter system set pga_aggregate_limit=2G scope=spfile;

System altered.

SQL> exit
Disconnected from Oracle Database 19c Enterprise Edition Release 19.0.0.0.0 - Production
Version 19.20.0.0.0
[oracle@rac1 ~]$ srvctl stop database -d cdb
srvctl start database -d cdb
[oracle@rac1 ~]$ srvctl start database -d cdb
PRCR-1079 : Failed to start resource ora.cdb.db
CRS-5017: The resource action "ora.cdb.db start" encountered the following error: 
ORA-01078: failure in processing system parameters
. For details refer to "(:CLSN00107:)" in "/u01/app/grid/diag/crs/rac2/crs/trace/crsd_oraagent_oracle.trc".

SQL>  startup pfile='/tmp/pfile';
ORACLE instance started.

Total System Global Area 1048573744 bytes
Fixed Size                  9172784 bytes
Variable Size             620756992 bytes
Database Buffers          411041792 bytes
Redo Buffers                7602176 bytes
Database mounted.
Database opened.
SQL>  create spfile='+data' from memory;

File created.

SQL> show spparameters pga; 
SQL> show parameters pga; 
SQL> exit
Disconnected from Oracle Database 19c Enterprise Edition Release 19.0.0.0.0 - Production
Version 19.20.0.0.0
[oracle@rac1 ~]$  srvctl config database -d cdb
Database unique name: cdb
Database name: cdb
Oracle home: /u01/app/oracle/product/19.0.0/db_1
Oracle user: oracle
Spfile: +DATA/CDB/PARAMETERFILE/spfile.300.1157606999
Password file: +DATA/CDB/PASSWORD/pwdcdb.258.1148478551
Domain: cj.com
Start options: open
Stop options: immediate
Database role: PRIMARY
Management policy: AUTOMATIC
Server pools: 
Disk Groups: DATA
Mount point paths: 
Services: srv_rman
Type: RAC
Start concurrency: 
Stop concurrency: 
OSDBA group: dba
OSOPER group: oper
Database instances: cdb1,cdb2,cdb3
Configured nodes: rac1,rac2,rac3
CSS critical: no
CPU count: 0
Memory target: 0
Maximum memory: 0
Default network number for database services: 
Database is administrator managed
[oracle@rac1 ~]$ s

SQL*Plus: Release 19.0.0.0.0 - Production on Sun Jan 7 18:31:17 2024
Version 19.20.0.0.0

Copyright (c) 1982, 2022, Oracle.  All rights reserved.


Connected to:
Oracle Database 19c Enterprise Edition Release 19.0.0.0.0 - Production
Version 19.20.0.0.0

SQL> startup force;
ORA-00304: requested INSTANCE_NUMBER is busy
SQL> exit
Disconnected from Oracle Database 19c Enterprise Edition Release 19.0.0.0.0 - Production
Version 19.20.0.0.0
[oracle@rac1 ~]$  srvctl stop database -d cdb
[oracle@rac1 ~]$ srvctl start database -d cdb
PRCR-1079 : Failed to start resource ora.cdb.db
CRS-5017: The resource action "ora.cdb.db start" encountered the following error: 
ORA-01034: ORACLE not available
ORA-27101: shared memory realm does not exist
Linux-x86_64 Error: 2: No such file or directory
Additional information: 4476
Additional information: -243946057
Process ID: 0
Session ID: 0 Serial number: 0
. For details refer to "(:CLSN00107:)" in "/u01/app/grid/diag/crs/rac2/crs/trace/crsd_oraagent_oracle.trc".

CRS-5017: The resource action "ora.cdb.db start" encountered the following error: 
ORA-01034: ORACLE not available
ORA-27101: shared memory realm does not exist
Linux-x86_64 Error: 2: No such file or directory
Additional information: 4476
Additional information: -996112533
Process ID: 0
Session ID: 0 Serial number: 0
. For details refer to "(:CLSN00107:)" in "/u01/app/grid/diag/crs/rac1/crs/trace/crsd_oraagent_oracle.trc".

CRS-2674: Start of 'ora.cdb.db' on 'rac2' failed
CRS-2674: Start of 'ora.cdb.db' on 'rac1' failed
[oracle@rac1 ~]$ srvctl stop database -d cdb
[oracle@rac1 ~]$ srvctl status database -d cdb
Instance cdb1 is not running on node rac1
Instance cdb2 is not running on node rac2
Instance cdb3 is not running on node rac3
[oracle@rac1 ~]$ srvctl start database -d cdb
PRCR-1079 : Failed to start resource ora.cdb.db
CRS-5017: The resource action "ora.cdb.db start" encountered the following error: 
ORA-01034: ORACLE not available
ORA-27101: shared memory realm does not exist
Linux-x86_64 Error: 2: No such file or directory
Additional information: 4476
Additional information: -243946057
Process ID: 0
Session ID: 0 Serial number: 0
. For details refer to "(:CLSN00107:)" in "/u01/app/grid/diag/crs/rac2/crs/trace/crsd_oraagent_oracle.trc".

CRS-5017: The resource action "ora.cdb.db start" encountered the following error: 
ORA-01034: ORACLE not available
ORA-27101: shared memory realm does not exist
Linux-x86_64 Error: 2: No such file or directory
Additional information: 4476
Additional information: -1748279009
Process ID: 0
Session ID: 0 Serial number: 0
. For details refer to "(:CLSN00107:)" in "/u01/app/grid/diag/crs/rac3/crs/trace/crsd_oraagent_oracle.trc".

CRS-2674: Start of 'ora.cdb.db' on 'rac2' failed
CRS-2674: Start of 'ora.cdb.db' on 'rac3' failed
[oracle@rac1 ~]$ vi /u01/app/grid/diag/crs/rac2/crs/trace/crsd_oraagent_oracle.trc
[oracle@rac1 ~]$ vi /u01/app/grid/diag/crs/rac3/crs/trace/crsd_oraagent_oracle.trc
[oracle@rac1 ~]$ s

1.--------------------------- 

[oracle@rac1 tmp]$ s

SQL> show parameters pga 

NAME                                 TYPE        VALUE
------------------------------------ ----------- ------------------------------
pga_aggregate_limit                  big integer 5000M
pga_aggregate_target                 big integer 755M
SQL> alter system set pga_aggregate_limit=2G;
alter system set pga_aggregate_limit=2G
*
ERROR at line 1:
ORA-02097: parameter cannot be modified because specified value is invalid
ORA-00093: pga_aggregate_limit must be between 5000M and 100000G


SQL>  alter system set pga_aggregate_limit=2G scope=spfile;----强制改

System altered.

SQL> startup force    
ORA-00093: pga_aggregate_limit must be between 5000M and 100000G
ORA-01078: failure in processing system parameters
SQL> startup
ORA-00093: pga_aggregate_limit must be between 5000M and 100000G
ORA-01078: failure in processing system parameters
SQL> show sga;
ORA-01034: ORACLE not available
Process ID: 0
Session ID: 448 Serial number: 14721

SQL> startup force;
ORA-00093: pga_aggregate_limit must be between 5000M and 100000G
ORA-01078: failure in processing system parameters
SQL> exit
Disconnected

------RAC2上改-----

SQL> alter system set pga_aggregate_limit=5G sid='cdb1';


[oracle@rac1 tmp]$ s

SQL*Plus: Release 19.0.0.0.0 - Production on Sun Jan 7 16:55:07 2024
Version 19.20.0.0.0

Copyright (c) 1982, 2022, Oracle.  All rights reserved.

Connected to an idle instance.

SQL> startup
ORACLE instance started.

Total System Global Area 1048573744 bytes
Fixed Size                  9172784 bytes
Variable Size             620756992 bytes
Database Buffers          411041792 bytes
Redo Buffers                7602176 bytes
Database mounted.
Database opened.
SQL> show parameters pga 

NAME                                 TYPE        VALUE
------------------------------------ ----------- ------------------------------
pga_aggregate_limit                  big integer 5G
pga_aggregate_target                 big integer 755M
SQL> 

2.------------------------不加sid的 alter system 不影响本node,影响别的node---

[oracle@rac1 tmp]$ s

SQL*Plus: Release 19.0.0.0.0 - Production on Sun Jan 7 17:04:04 2024
Version 19.20.0.0.0

Copyright (c) 1982, 2022, Oracle.  All rights reserved.


Connected to:
Oracle Database 19c Enterprise Edition Release 19.0.0.0.0 - Production
Version 19.20.0.0.0

SQL> alter system set pga_aggregate_limit=2G scope=spfile;

SQL>  show spparameters pga

SID      NAME                          TYPE        VALUE
-------- ----------------------------- ----------- ----------------------------
*        pga_aggregate_limit           big integer 2G
cdb1     pga_aggregate_limit           big integer 5G
*        pga_aggregate_target          big integer 755M
SQL> 

SQL> show parameters pga

NAME                                 TYPE        VALUE
------------------------------------ ----------- ------------------------------
pga_aggregate_limit                  big integer 5G
pga_aggregate_target                 big integer 755M
SQL> 

SQL> startup force;  
ORACLE instance started.

Total System Global Area 1048573744 bytes
Fixed Size                  9172784 bytes
Variable Size             620756992 bytes
Database Buffers          411041792 bytes
Redo Buffers                7602176 bytes
Database mounted.
Database opened.
SQL>  show spparameters pga

SID      NAME                          TYPE        VALUE
-------- ----------------------------- ----------- ----------------------------
*        pga_aggregate_limit           big integer 2G
cdb1     pga_aggregate_limit           big integer 5G
*        pga_aggregate_target          big integer 755M

一起重启可以起来,别的机器起不来了

oracle@rac2 ~]$ s
SQL> show spparameters pga

SID      NAME                          TYPE        VALUE
-------- ----------------------------- ----------- ----------------------------
*        pga_aggregate_limit           big integer 2G
cdb1     pga_aggregate_limit           big integer 5G
*        pga_aggregate_target          big integer 755M
SQL> show parameters pga

NAME                                 TYPE        VALUE
------------------------------------ ----------- ------------------------------
pga_aggregate_limit                  big integer 5G
pga_aggregate_target                 big integer 755M
SQL> 

--------------------改某个sid的 spfile 一定要加sid='cdb1'

SQL> startup force 
ORA-00093: pga_aggregate_limit must be between 5000M and 100000G
ORA-01078: failure in processing system parameters
SQL> 

3.---------------------reset spparameters  一致----------------------------

SQL> show spparameters pga

SID      NAME                          TYPE        VALUE
-------- ----------------------------- ----------- ----------------------------
cdb1     pga_aggregate_limit           big integer 5G
*        pga_aggregate_limit           big integer 5G
*        pga_aggregate_target          big integer 755M
SQL> show  parameters pga

NAME                                 TYPE        VALUE
------------------------------------ ----------- ------------------------------
pga_aggregate_limit                  big integer 5G
pga_aggregate_target                 big integer 755M
 


SQL> alter system reset pga_aggregate_limit sid='cdb1';

System altered.

SQL>  show spparameters pga

SID      NAME                          TYPE        VALUE
-------- ----------------------------- ----------- ----------------------------
*        pga_aggregate_limit           big integer 5G------------------------少了CDB1的特殊配置了
*        pga_aggregate_target          big integer 755M
SQL>  show  parameters pga

NAME                                 TYPE        VALUE
------------------------------------ ----------- ------------------------------
pga_aggregate_limit                  big integer 5G
pga_aggregate_target                 big integer 755M
SQL> 

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/605799.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

【C语言】一种状态超时阻塞循环查询的办法

【C语言】一种状态超时阻塞循环查询的办法 文章目录 【C语言】一种状态超时阻塞循环查询的办法1.方法12.方法21.方法1 static void wait_notify_async(notify_type_t notify_type) {static rt_tick_t exit_tick;exit_tick = rt_time_get_msec();lb_int32 notify_success = RT_F…

vue-springboot基于java的社区志愿者活动信息管理系统 e2y4d

社区志愿者信息管理系统的主要开发目标如下&#xff1a; &#xff08;1&#xff09;对零碎化、分布散的数据信息进行收纳、整理&#xff0c;通过网络服务平台使这些信息内容更加调理&#xff0c;更加方便化和清晰化&#xff0c;让访问该系统的每个用户享受浏览的过程。 &#x…

5308. 公路

题意 有n 个站点&#xff0c;站点可以加油&#xff0c;站点之间的油的价格不一定相等&#xff0c;站点的编号从1到n&#xff0c;站点之间的距离用v表示&#xff0c;站点的油价用a表示&#xff0c;求从1站点到n站点所需要的最小的油价是多少 数据范围 对于所有测试数据保证&a…

google 内购记录

1.GooglePlay内购服务器验单配置 &#xff08;新版本好像不需要API 配置关联&#xff0c;好像不需要了&#xff09; 详细配置url: https://blog.csdn.net/wuyutaoktm/article/details/122450878 2. 用golang代码实现&#xff0c;主要是验证订单和发币,PAY_JSON 是上一个步骤申…

Java后端开发——Ajax、jQuery和JSON

Java后端开发——Ajax、jQuery和JSON 概述 Ajax全称是Asynchronous Javascript and XML&#xff0c;即异步的JavaScript和 XML。Ajax是一种Web应用技术&#xff0c;该技术是在JavaScript、DOM、服务器配合下&#xff0c;实现浏览器向服务器发送异步请求。 Ajax异步请求方式不…

螺纹钢负公差测径仪获得哪些信息?

螺纹钢负公差轧制是很多厂家在使用的一种轧制方式&#xff0c;蓝鹏测控在推出普通型轧钢测径仪和智能型轧钢测径仪后&#xff0c;又推出了可显示负公差信息的测径仪&#xff0c;本文来简单看一下螺纹钢负公差轧制能从测径仪中获得哪些信息&#xff1f; 负公差测径仪为了能对螺纹…

Java+springboot+vue智慧校园源码,数据云平台Web端+小程序教师端+小程序家长端

技术架构&#xff1a; Javaspringbootvue element-ui小程序电子班牌&#xff1a;Java Android演示自主版权。 智慧校园电子班牌人脸识别系统全套源码&#xff0c;包含&#xff1a;数据云平台Web端小程序教师端小程序家长端电子班牌 学生端。 电子班牌系统又称之为智慧班牌&am…

什么是本地存储的有效期?

本地缓存设置有效期&#xff1f; 使用localStorage本地缓存存储数据时不能像cookie那样设置有效期&#xff0c;使得数据会一直存在浏览器中&#xff0c;除非人为删除。这时我们可以封装一下localStorage&#xff0c;在需要有效期的数据存储时同时设置到期时间&#xff0c;读取的…

2024 极术通讯-AI 2024:端、边AI将成为硬件厂商布局重点

导读&#xff1a;极术社区推出极术通讯&#xff0c;引入行业媒体和技术社区、咨询机构优质内容&#xff0c;定期分享产业技术趋势与市场应用热点。 芯方向 Helium 技术讲堂 | 为何不直接采用 Neon&#xff1f; 当人工智能 (AI) 下沉到各式各样的应用当中&#xff0c;作为市场…

【设计模式之美】SOLID 原则之三:里式替换(LSP)跟多态有何区别?如何理解LSP中子类遵守父类的约定

文章目录 一. 如何理解“里式替换原则”&#xff1f;二. 哪些代码明显违背了 LSP&#xff1f;三. 回顾 一. 如何理解“里式替换原则”&#xff1f; 子类对象能够替换程序中父类对象出现的任何地方&#xff0c;并且保证原来程序的逻辑行为不变及正确性不被破坏。 里氏替换原则…

Sui链上铭文爆火,TPS近6000领先同行

在2023年接近尾声时&#xff0c;用户涌入众多智能合约平台进行铭文相关交易&#xff0c;无意中对各种网络进行了压力测试。在许多平台出现拥堵和费用飙升的情况下&#xff0c;Sui通过实现令人印象深刻的TPS&#xff0c;在没有减速或gas费用激增的情况下脱颖而出。 最初用于比特…

人工智能(AI)在未来电影制作业中的革命性影响及挑战

随着人工智能&#xff08;AI&#xff09;技术的不断突破&#xff0c;其对电影制作行业的改造和影响日益显著。本文旨在深入探讨AI在未来的应用将如何重塑电影制作流程、提升作品质量&#xff0c;并同时面对的挑战与变革。 一、优化电影制作流程与降低成本 AI在电影制作中的应用…

vue3+vite +element plus日历date picker中文显示

项目情况 element-plus 默认是英文模式&#xff0c;需要中文模式的话需要设置一下&#xff1a; 项目框架&#xff08;vue3&#xff09;&#xff1a;vite JS element-plus 版本&#xff1a;&#xff08;注意版本兼容&#xff0c;element plus 较低版本&#xff1a;1.xx.xx&a…

Docker 容器管理和镜像管理基础知识(二)

Docker 容器管理和镜像管理 容器管理 docker create 命令用于在 Docker 中创建一个新的容器&#xff0c;但不会自动启动它。这个命令会返回容器的 ID&#xff0c;可以使用它来 进一步操作容器&#xff0c;这也是与 docker run 命令的一个区别 以下是 docker create 的基本用…

Kotlin 作用域函数

作用域函数&#xff08;Scope Functions&#xff09; 函数参数返回值说明letitlambda result非空对象执行代码块applythis上下文对象用于对象配置操作alsoit上下问对象执行额外操作runthislambda result用于对象配置和计算结果withthislambda result非扩展函数&#xff0c;配置…

STL标准库与泛型编程(侯捷)笔记3

STL标准库与泛型编程&#xff08;侯捷&#xff09; 本文是学习笔记&#xff0c;仅供个人学习使用。如有侵权&#xff0c;请联系删除。 参考链接 Youbute: 侯捷-STL标准库与泛型编程 B站: 侯捷 - STL Github:STL源码剖析中源码 https://github.com/SilverMaple/STLSourceCo…

中国式浪漫:古人对万物的雅称

古人对万物的称呼都是美而浪漫&#xff0c;在诗词中&#xff0c;女子被称为红妆、佳人、婵娟、碧玉、红颜。雪也叫作琼芳、玉絮、六花、玉鸾&#xff1b;在诗词中&#xff0c;每一缕风&#xff0c;每一片雪&#xff0c;都有一个雅致的名字。所谓的诗情画意&#xff0c;便是用普…

基于深度学习的停车位关键点检测系统(代码+原理)

摘要&#xff1a; DMPR-PS是一种基于深度学习的停车位检测系统&#xff0c;旨在实时监测和识别停车场中的停车位。该系统利用图像处理和分析技术&#xff0c;通过摄像头获取停车场的实时图像&#xff0c;并自动检测停车位的位置和状态。本文详细介绍了DMPR-PS系统的算法原理、…

最短路径问题相关算法、原理及适用场景

这里写目录标题 一、最短路径算法、原理及适用场景深度优先搜索算法/广度优先搜索算法Floyd算法&#xff08;Floyd-Warshell算法&#xff09;Dijkstra算法A*算法贝尔曼福特算法&#xff08;Bellman-Ford Algorithm&#xff09;SPFA算法&#xff08;Shortest Path Faster Algori…

FPGA高端项目:纯verilog的 25G-UDP 高速协议栈,提供工程源码和技术支持

目录 1、前言免责声明 2、相关方案推荐我这里已有的以太网方案本协议栈的 1G-UDP版本本协议栈的 10G-UDP版本1G 千兆网 TCP-->服务器 方案1G 千兆网 TCP-->客户端 方案10G 万兆网 TCP-->服务器客户端 方案 3、该UDP协议栈性能4、详细设计方案设计架构框图网络调试助手…