Oracle 参数 MAX_STRING_SIZE 官方解释,作用,如何配置最优化建议

本站中文解释

MAX_STRING_SIZE用于指定VARCHAR2,NVARCHAR2及RAW数据类型单个值(single value)允许的最大字符长度;默认值为VARCHAR2:4000, NVARCHAR2:2000;RAW:2000.

可设置为EXTENDED,那么VARCHAR2,NVARCHAR2及RAW将可以储存最大长度为32767字节的值,只有在升级到12.1版本以上才可以设置MAX_STRING_SIZE为EXTENDED。

正确设置:

使用ALTER SYSTEM设置语句对MAX_STRING_SIZE参数进行设置:

ALTER SYSTEM SET MAX_STRING_SIZE = ‘EXTENDED’ SCOPE = BOTH;

运行以上语句,完成参数设置,然后需要重启数据库实例便可以生效:

SHUTDOWN IMMEDIATE;
STARTUP;

官方英文解释

window.name=’MAX_STRING_SIZE’
function footdisplay(footnum,footnote) {
var msg = window.open(‘about:blank’, ‘NewWindow’ + footnum,
‘directories=no,height=100,location=no,menubar=no,resizable=yes,’ +
‘scrollbars=yes,status=no,toolbar=no,width=598’);
msg.document.open(‘text/html’);
msg.document.write(”);
msg.document.write(‘‘);</p> <p> msg.document.write(‘Footnote  ‘ + footnum);<br /> msg.document.write(”);<br /> msg.document.write(”);<br /> msg.document.write(‘ <![CDATA[ ');<br /> msg.document.write('h1 {text-align: center; font-size: 14pt;}');<br /> msg.document.write('fieldset {border: none;}');<br /> msg.document.write('form {text-align: center;}');<br /> msg.document.write(' ]]\u003e ‘);<br /> msg.document.write(‘</p> <div id="footnote"> <h1>Footnote  ‘ + footnum + ‘</p> <p>‘);<br /> msg.document.write(footnote);<br /> msg.document.write(‘</p> <fieldset>‘);<br /> msg.document.write(”);<br /> msg.document.write(”);<br /> msg.document.close();<br /> setTimeout(function() {<br /> var height = msg.document.getElementById(‘footnote’).offsetHeight;<br /> msg.resizeTo(598, height + 100);<br /> }<br /> , 100);<br /> msg.focus();<br /> }</p> <p>The script content on this page is for navigation purposes only and does not alter the content in any way.</p> <div> <p><code class="codeph">MAX_STRING_SIZE</code> controls the maximum size of <code class="codeph">VARCHAR2</code>, <code class="codeph">NVARCHAR2</code>, and <code class="codeph">RAW</code> data types in SQL. </p> <div class="section"></div> <p> <!-- class="section" --></p> <div class="tblformal" id="GUID-D424D23B-0933-425F-BC69-9C0E6724693C__GUID-39BE1D49-5C7E-4DB0-8DF8-57A322F99996"> <div class="table-responsive"> <table cellpadding="4" cellspacing="0" class="Formal" title="" summary="This table describes the properties for this initialization parameter" width="100%" border="1" rules="rows"> <thead> <tr align="left" valign="top"> <th align="left" valign="bottom" width="25%" id="d139386e132">Property</th> <th align="left" valign="bottom" width="75%" id="d139386e135">Description</th> </tr> </thead> <tbody> <tr align="left" valign="top"> <td align="left" valign="top" width="25%" id="d139386e140" headers="d139386e132 "> <p><span class="bold">Parameter type</span></p> </td> <td align="left" valign="top" width="75%" headers="d139386e140 d139386e135 "> <p>String</p> </td> </tr> <tr align="left" valign="top"> <td align="left" valign="top" width="25%" id="d139386e148" headers="d139386e132 "> <p><span class="bold">Syntax</span></p> </td> <td align="left" valign="top" width="75%" headers="d139386e148 d139386e135 "> <p><code class="codeph">MAX_STRING_SIZE = { STANDARD | EXTENDED }</code></p> </td> </tr> <tr align="left" valign="top"> <td align="left" valign="top" width="25%" id="d139386e157" headers="d139386e132 "> <p><span class="bold">Default value</span></p> </td> <td align="left" valign="top" width="75%" headers="d139386e157 d139386e135 "> <p><code class="codeph">STANDARD</code></p> </td> </tr> <tr align="left" valign="top"> <td align="left" valign="top" width="25%" id="d139386e166" headers="d139386e132 "> <p><span class="bold">Modifiable</span></p> </td> <td align="left" valign="top" width="75%" headers="d139386e166 d139386e135 "> <p><code class="codeph">ALTER SYSTEM</code> … SID=’*’<sup>Foot 1</sup></p> </td> </tr> <tr align="left" valign="top"> <td align="left" valign="top" width="25%" id="d139386e179" headers="d139386e132 "> <p><span class="bold">Modifiable in a PDB</span></p> </td> <td align="left" valign="top" width="75%" headers="d139386e179 d139386e135 "> <p>Yes</p> </td> </tr> <tr align="left" valign="top"> <td align="left" valign="top" width="25%" id="d139386e187" headers="d139386e132 "> <p><span class="bold">Basic</span></p> </td> <td align="left" valign="top" width="75%" headers="d139386e187 d139386e135 "> <p>No</p> </td> </tr> <tr align="left" valign="top"> <td align="left" valign="top" width="25%" id="d139386e195" headers="d139386e132 "> <p><span class="bold">Oracle RAC</span></p> </td> <td align="left" valign="top" width="75%" headers="d139386e195 d139386e135 "> <p>Multiple instances must use the same value.</p> </td> </tr> </tbody> </table> </div></div> <p> <!-- class="inftblhruleinformal" --></p> <p class="tablefootnote"><sup class="tablefootnote">Footnote 1 </sup></p> <p>Use ALTER SYSTEM only when the database is in UPGRADE mode, and run the utl32k.sql script afterward, as explained in this section.</p> <div class="section"> <p><code class="codeph">STANDARD</code> means that the length limits for Oracle Database releases prior to Oracle Database 12<span class="italic">c</span> apply (for example, 4000 bytes for <code class="codeph">VARCHAR</code>2 and <code class="codeph">NVARCHAR2</code>, and 2000 bytes for <code class="codeph">RAW</code>). </p> <p><code class="codeph">EXTENDED</code> means that the 32767 byte limit introduced in Oracle Database 12<span class="italic">c</span> applies. </p> <p>The <code class="codeph">COMPATIBLE</code> initialization parameter must be set to <code class="codeph">12.0.0.0</code> or higher to set <code class="codeph">MAX_STRING_SIZE</code> = <code class="codeph">EXTENDED</code>. </p> <p>You can change the value of <code class="codeph">MAX_STRING_SIZE</code> from <code class="codeph">STANDARD</code> to <code class="codeph">EXTENDED</code>. However, you cannot change the value of <code class="codeph">MAX_STRING_SIZE</code> from <code class="codeph">EXTENDED</code> to <code class="codeph">STANDARD</code>. </p> <p>By setting <code class="codeph">MAX_STRING_SIZE</code> = <code class="codeph">EXTENDED</code>, users are taking an explicit action that could introduce application incompatibility in their database. Applications that do not want to use the expanded data types can be rewritten for compatibility with either setting; for example, these applications could use explicit CASTs to fix the length of <code class="codeph">VARCHAR2</code> expressions during <code class="codeph">CREATE TABLE AS SELECT</code>. </p> <p>Altering <code class="codeph">MAX_STRING_SIZE</code> will update database objects and possibly invalidate them, as follows: </p> <ul style="list-style-type: disc"> <li> <p>Tables with virtual columns will be updated with new data type metadata for virtual columns of <code class="codeph">VARCHAR2(4000)</code>, 4000-byte <code class="codeph">NVARCHAR2</code>, or <code class="codeph">RAW(2000)</code> type. </p> <ul style="list-style-type: disc"> <li> <p>Functional indexes will become unusable if a change to their associated virtual columns causes the index key to exceed index key length limits. Attempts to rebuild such indexes will fail with <code class="codeph">ORA-01450: maximum key length exceeded</code>. </p> </li> </ul> </li> <li> <p>Views will be invalidated if they contain <code class="codeph">VARCHAR2(4000)</code>, 4000-byte <code class="codeph">NVARCHAR2</code>, or <code class="codeph">RAW(2000)</code> typed expression columns. </p> </li> <li> <p>Materialized views will be updated with new metadata <code class="codeph">VARCHAR2(4000)</code>, 4000-byte <code class="codeph">NVARCHAR2</code>, and <code class="codeph">RAW(2000)</code> typed expression columns </p> </li> </ul></div> <p> <!-- class="section" --></p> <div class="section"> <p class="subhead1" id="GUID-D424D23B-0933-425F-BC69-9C0E6724693C__INCREASINGTHEMAXIMUMSIZEOFVARCHAR2N-D9FCEFCD" role="heading">Increasing the Maximum Size of VARCHAR2, NVARCHAR2, and RAW Columns in a CDB</p> <p>To increase the maximum size of <code class="codeph">VARCHAR2</code>, <code class="codeph">NVARCHAR2</code>, and <code class="codeph">RAW</code> columns in a CDB and in all the PDBs in the CDB: </p> <ol> <li> <p>Connect to the CDB AS SYSDBA.</p> </li> <li> <p>In the root, change the setting of <code class="codeph">MAX_STRING_SIZE</code> to <code class="codeph">EXTENDED</code>: </p> <pre class="pre codeblock precomplete hljs"><button class="copy-btn copy-btn-enabled" aria-label="Copy the following example to clipboard"><span class="copy-btn-text">Copy</span></button><code>ALTER SESSION SET CONTAINER=CDB$ROOT; ALTER SYSTEM SET max_string_size=extended SCOPE=SPFILE;</code><div class="pre-space"></div></pre> <div class="infoboxnote" id="GUID-D424D23B-0933-425F-BC69-9C0E6724693C__GUID-90E4E174-5F55-4DD3-902A-081F0B359EDB"> <p class="notep1">Note:</p> <p>The root continues to use <code class="codeph">STANDARD</code> semantics even after <code class="codeph">MAX_STRING_SIZE</code> is set to <code class="codeph">EXTENDED</code>. The reason for setting <code class="codeph">MAX_STRING_SIZE</code> to <code class="codeph">EXTENDED</code> in the root is so all the PDBs in the CDB can inherit the <code class="codeph">EXTENDED</code> setting from the root. </p> </p></div> </li> <li> <p>Shut down the CDB.</p> </li> <li> <p>Restart the CDB in UPGRADE mode.</p> <pre class="pre codeblock precomplete hljs"><button class="copy-btn copy-btn-enabled" aria-label="Copy the following example to clipboard"><span class="copy-btn-text">Copy</span></button><code>startup upgrade;</code><div class="pre-space"></div></pre> </li> <li> <p>Use the <code class="codeph">catcon.pl</code> script to run the <code class="codeph">rdbms/admin/utl32k.sql</code> script in the root and in all the PDBs in the CDB to increase the maximum size of the <code class="codeph">VARCHAR2</code>, <code class="codeph">NVARCHAR2</code>, and <code class="codeph">RAW</code> columns. The –force_pdb_mode ‘UPGRADE’ option is used to ensure that all PDBs, including application root clones, are opened in migrate mode. Enter the SYS password when prompted: </p> <pre class="pre codeblock precomplete hljs"><button class="copy-btn copy-btn-enabled" aria-label="Copy the following example to clipboard"><span class="copy-btn-text">Copy</span></button><code>$ cd $ORACLE_HOME/rdbms/admin $ mkdir /scratch/mydir/utl32k_cdb_pdbs_output $ $ORACLE_HOME/perl/bin/perl $ORACLE_HOME/rdbms/admin/catcon.pl -u SYS --force_pdb_mode 'UPGRADE' -d $ORACLE_HOME/rdbms/admin -l '/scratch/mydir/utl32k_cdb_pdbs_output' -b utl32k_cdb_pdbs_output utl32k.sql catcon: ALL catcon-related output will be written to [/scratch/mydir/utl32k_cdb_pdbs_output/utl32k_cdb_pdbs_output_catcon_23172.lst] catcon: See [/scratch/mydir/utl32k_cdb_pdbs_output/utl32k_cdb_pdbs_output*.log] files for output generated by scripts catcon: See [/scratch/mydir/utl32k_cdb_pdbs_output/utl32k_cdb_pdbs_output_*.lst] files for spool files, if any Enter Password: catcon.pl: completed successfully $</code><div class="pre-space"></div></pre> <div class="infoboxnote" id="GUID-D424D23B-0933-425F-BC69-9C0E6724693C__GUID-82536E05-CC37-44B9-8080-3A4147443617"> <p class="notep1">Note:</p> <p>The <code class="codeph">utl32k.sql</code> script increases the maximum size of the <code class="codeph">VARCHAR2</code>, <code class="codeph">NVARCHAR2</code>, and <code class="codeph">RAW</code> columns for the views where this is required. The script does not increase the maximum size of the <code class="codeph">VARCHAR2</code>, <code class="codeph">NVARCHAR2</code>, and <code class="codeph">RAW</code> columns in some views because of the way the SQL for those views is written. </p> </p></div> </li> <li> <p>Connect to the CDB AS SYSDBA and shut down the database.</p> </li> <li> <p>Restart the CDB in NORMAL mode.</p> <pre class="pre codeblock precomplete hljs"><button class="copy-btn copy-btn-enabled" aria-label="Copy the following example to clipboard"><span class="copy-btn-text">Copy</span></button><code>startup;</code><div class="pre-space"></div></pre> </li> <li> <p>Use the <code class="codeph">catcon.pl</code> script to run the <code class="codeph">rdbms/admin/utlrp.sql</code> script to recompile invalid objects in the root and in all the PDBs in the CDB. The –force_pdb_mode ‘READ WRITE’ option is used to ensure that all the PDBs (including application root clones) are opened in read write mode. Enter the SYS password when prompted: </p> <pre class="pre codeblock precomplete hljs"><button class="copy-btn copy-btn-enabled" aria-label="Copy the following example to clipboard"><span class="copy-btn-text">Copy</span></button><code>$ cd $ORACLE_HOME/rdbms/admin $ mkdir /scratch/mydir/utlrp_cdb_pdbs_output $ $ORACLE_HOME/perl/bin/perl $ORACLE_HOME/rdbms/admin/catcon.pl -u SYS --force_pdb_mode 'READ WRITE' -d $ORACLE_HOME/rdbms/admin -l '/scratch/mydir/utlrp_cdb_pdbs_output' -b utlrp_cdb_pdbs_output utlrp.sql catcon: ALL catcon-related output will be written to [/scratch/mydir/utlrp_cdb_pdbs_output/utlrp_cdb_pdbs_output_catcon_24271.lst] catcon: See [/scratch/mydir/utlrp_cdb_pdbs_output/utlrp_cdb_pdbs_output*.log] files for output generated by scripts catcon: See [/scratch/mydir/utlrp_cdb_pdbs_output/utlrp_cdb_pdbs_output_*.lst] files for spool files, if any Enter Password: catcon.pl: completed successfully $</code><div class="pre-space"></div></pre> </li> </ol> <div class="infoboxnotealso" id="GUID-D424D23B-0933-425F-BC69-9C0E6724693C__GUID-2E575F69-E9B3-4919-BAFC-3E5632E0CA9C"> <p class="notep1">See Also:</p> <p><span><cite>Oracle Multitenant<br /> Administrator’s Guide</cite></span> for information about using the <code class="codeph">catcon.pl</code> script to run Oracle-supplied scripts in a CDB and PDBs. </p> </p></div> </p></div> <p> <!-- class="section" --></p> <div class="section"> <p class="subhead1" id="GUID-D424D23B-0933-425F-BC69-9C0E6724693C__GUID-5A3E3AA3-554C-4C20-B08F-88EBF372365D" role="heading">Increasing the Maximum Size of VARCHAR2, NVARCHAR2, and RAW Columns in a PDB</p> </p></div> <p> <!-- class="section" --></p> <div class="section"> <p>To increase the maximum size of <code class="codeph">VARCHAR2</code>, <code class="codeph">NVARCHAR2</code>, and <code class="codeph">RAW</code> columns in a PDB: </p> <ol> <li> <p>Shut down the PDB.</p> </li> <li> <p>Reopen the PDB in migrate mode.</p> <div class="infoboxnote" id="GUID-D424D23B-0933-425F-BC69-9C0E6724693C__GUID-5904BB72-0700-4DFD-AD55-DE5D62E4A407"> <p class="notep1">Note:</p> <p>The following SQL statement can be used to reopen a PDB in migrate mode when the current container is the PDB:</p> <p><code class="codeph">ALTER PLUGGABLE DATABASE</code> <span class="italic">pdb-name</span> <code class="codeph">OPEN UPGRADE;</code></p> </p></div> </li> <li> <p>Change the setting of <code class="codeph">MAX_STRING_SIZE</code> in the PDB to <code class="codeph">EXTENDED</code>. </p> </li> <li> <p>Run the <code class="codeph">rdbms/admin/utl32k.sql</code> script in the PDB. You must be connected <code class="codeph">AS SYSDBA</code> to run the <code class="codeph">utl32k.sql</code> script. </p> </li> <li> <p>Reopen the PDB in <code class="codeph">NORMAL</code> mode. </p> <div class="infoboxnote" id="GUID-D424D23B-0933-425F-BC69-9C0E6724693C__GUID-E6D90F9B-0E29-486A-B4F2-2B14D8E91AFC"> <p class="notep1">Note:</p> <p>The <code class="codeph">utl32k.sql</code> script increases the maximum size of the <code class="codeph">VARCHAR2</code>, <code class="codeph">NVARCHAR2</code>, and <code class="codeph">RAW</code> columns for the views where this is required. The script does not increase the maximum size of the <code class="codeph">VARCHAR2</code>, <code class="codeph">NVARCHAR2</code>, and <code class="codeph">RAW</code> columns in some views because of the way the SQL for those views is written. </p> </p></div> </li> <li> <p>Run the <code class="codeph">rdbms/admin/utlrp.sql</code> script in the PDB to recompile invalid objects. You must be connected <code class="codeph">AS SYSDBA</code> to run the script. </p> </li> </ol> <div class="infoboxnotealso" id="GUID-D424D23B-0933-425F-BC69-9C0E6724693C__GUID-41F0E2B5-7A3A-467C-9C05-1FB0B894BCB8"> <p class="notep1">See Also:</p> <p><span><cite>Oracle Multitenant<br /> Administrator’s Guide</cite></span> for more information about modifying the open mode of PDBs. </p> </p></div> </p></div> <p> <!-- class="section" --></p> <div class="section"> <p class="subhead1" id="GUID-D424D23B-0933-425F-BC69-9C0E6724693C__GUID-4948B680-0FC7-4DCB-BFFF-EE8098B87332" role="heading">Increasing the Maximum Size of VARCHAR2, NVARCHAR2, and RAW Columns in an Oracle RAC Database</p> </p></div> <p> <!-- class="section" --></p> <div class="section"> <p>To increase the maximum size of <code class="codeph">VARCHAR2</code>, <code class="codeph">NVARCHAR2</code>, and <code class="codeph">RAW</code> columns in an Oracle RAC database: </p> <ol> <li> <p>Shut down all of the Oracle RAC database instances, except one.</p> </li> <li> <p>Restart the Oracle RAC database instance in <code class="codeph">UPGRADE</code> mode. </p> </li> <li> <p>Change the setting of <code class="codeph">MAX_STRING_SIZE</code> to <code class="codeph">EXTENDED</code>. </p> </li> <li> <p>Run the <code class="codeph">rdbms/admin/utl32k.sql</code> script in the Oracle RAC database instance. You must be connected <code class="codeph">AS SYSDBA</code> to run the script. </p> </li> <li> <p>Restart all Oracle RAC database instances in <code class="codeph">NORMAL</code> mode. </p> <div class="infoboxnote" id="GUID-D424D23B-0933-425F-BC69-9C0E6724693C__GUID-2B6A4D55-589D-4452-946B-9D0823F88A67"> <p class="notep1">Note:</p> <p>The <code class="codeph">utl32k.sql</code> script increases the maximum size of the <code class="codeph">VARCHAR2</code>, <code class="codeph">NVARCHAR2</code>, and <code class="codeph">RAW</code> columns for the views where this is required. The script does not increase the maximum size of the <code class="codeph">VARCHAR2</code>, <code class="codeph">NVARCHAR2</code>, and <code class="codeph">RAW</code> columns in some views because of the way the SQL for those views is written. </p> </p></div> </li> <li> <p>Run the <code class="codeph">rdbms/admin/utlrp.sql</code> script to recompile invalid objects. You must be connected <code class="codeph">AS SYSDBA</code> to run the script. </p> </li> </ol></div> <p> <!-- class="section" --></p> <div class="section"> <p class="subhead1" id="GUID-D424D23B-0933-425F-BC69-9C0E6724693C__GUID-22C170F0-AAC8-48A4-BA1D-10F24BBB7234" role="heading">Increasing the Maximum Size of VARCHAR2, NVARCHAR2, and RAW Columns in an Oracle Data Guard Logical Standby Database</p> </p></div> <p> <!-- class="section" --></p> <div class="section"> <p>To increase the maximum size of <code class="codeph">VARCHAR2</code>, <code class="codeph">NVARCHAR2</code>, and <code class="codeph">RAW</code> columns in an Oracle Data Guard logical standby database: </p> <ol> <li> <p>Shut down the Oracle Data Guard primary database and logical standby database.</p> </li> <li> <p>Restart the primary database and logical standby database in <code class="codeph">UPGRADE</code> mode. </p> </li> <li> <p>Change the setting of <code class="codeph">MAX_STRING_SIZE</code> to <code class="codeph">EXTENDED</code> on the primary database and logical standby database. </p> </li> <li> <p>Run the <code class="codeph">rdbms/admin/utl32k.sql</code> script on both the primary database and the logical standby database. You must be connected <code class="codeph">AS SYSDBA</code> to run the script. </p> </li> <li> <p>Restart the primary database and logical standby database in <code class="codeph">NORMAL</code> mode. </p> <div class="infoboxnote" id="GUID-D424D23B-0933-425F-BC69-9C0E6724693C__GUID-6331CEC9-6F8B-457C-8D15-4377195A7B7B"> <p class="notep1">Note:</p> <p>The <code class="codeph">utl32k.sql</code> script increases the maximum size of the <code class="codeph">VARCHAR2</code>, <code class="codeph">NVARCHAR2</code>, and <code class="codeph">RAW</code> columns for the views where this is required. The script does not increase the maximum size of the <code class="codeph">VARCHAR2</code>, <code class="codeph">NVARCHAR2</code>, and <code class="codeph">RAW</code> columns in some views because of the way the SQL for those views is written. </p> </p></div> </li> <li> <p>Run the <code class="codeph">rdbms/admin/utlrp.sql</code> script on the primary database and logical standby database to recompile invalid objects. You must be connected <code class="codeph">AS SYSDBA</code> to run the script. </p> </li> <li> <p>Restart SQL Apply.</p> </li> </ol> <div class="infoboxnotealso" id="GUID-D424D23B-0933-425F-BC69-9C0E6724693C__GUID-B10BBBEC-7F35-4D66-8134-F09326FE1782"> <p class="notep1">See Also:</p> <p><span><cite>Oracle Database<br /> Globalization Support Guide</cite></span> for more information about the <code class="codeph">MAX_STRING_SIZE</code> parameter </p> </p></div> </p></div> <p> <!-- class="section" --> </div> </div> <div id="pay-single-box"></div> <div class="entry-tags"> <a href="http://www.dbs724.com/tag/oracle%e4%bc%98%e5%8c%96" rel="tag"> Oracle优化 </a> <a href="http://www.dbs724.com/tag/oracle%e5%86%85%e9%83%a8%e8%a7%86%e5%9b%be" rel="tag"> oracle内部视图 </a> <a href="http://www.dbs724.com/tag/oracle%e5%8f%82%e6%95%b0" rel="tag"> oracle参数 </a> <a href="http://www.dbs724.com/tag/oracle%e5%bc%80%e5%8f%91" rel="tag"> oracle开发 </a> <a href="http://www.dbs724.com/tag/oracle%e6%95%85%e9%9a%9c%e5%a4%84%e7%90%86" rel="tag"> oracle故障处理 </a> <a href="http://www.dbs724.com/tag/oracle%e6%95%99%e7%a8%8b" rel="tag"> oracle教程 </a> <a href="http://www.dbs724.com/tag/oracle%e7%bb%b4%e6%8a%a4" rel="tag"> oracle维护 </a> </div> <div class="article-copyright"><br/><a href="http://www.dbs724.com">数据运维技术</a> » <a href="http://www.dbs724.com/54208.html">Oracle 参数 MAX_STRING_SIZE 官方解释,作用,如何配置最优化建议</a></div> <div class="ripro_gg_wrap pc"></div><div class="article-footer"> <div class="xshare"> <span class="xshare-title">分享到:</span> <a href="" etap="share" data-share="qq" class="share-qq"><i class="fa fa-qq"></i></a> <a href="" etap="share" data-share="weibo" class="share-weibo"><i class="fa fa-weibo"></i></a> <a href="javascript:;" class="btn-bigger-cover share-weixin" data-nonce="614f9f5143" data-id="54208" data-action="create-bigger-image" title="海报分享" id="bigger-cover"><i class="fa fa-paper-plane"></i></a> </div> </div> </div> </div> </article> <div class="entry-navigation"> <nav class="article-nav"> <span class="article-nav-prev">上一篇<br><a href="http://www.dbs724.com/37630.html" rel="prev">Linux中如何查看文件的创建时间详解</a></span> <span class="article-nav-next">下一篇<br><a href="http://www.dbs724.com/175262.html" rel="next">开启Linux网络机顶盒新世界(linux 网络机顶盒)</a></span> </nav> </div> <!-- # 标准网格模式... --> <div class="related-posts-grid"> <h4 class="u-border-title">相关推荐</h4> <div class="row"> <div class="col-6 col-sm-3 col-md-3 mt-10 mb-10"> <article class="post"> <div class="entry-media"> <div class="placeholder" style="padding-bottom: 66.666666666667%;"> <a href="http://www.dbs724.com/277023.html"> <img class="lazyload" data-src="http://www.dbs724.com/wp-content/themes/ripro/assets/images/thumb/1.jpg" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" alt="限制Redis存储次数提升数据安全性(redis限制存储次数)"> </a> </div> </div> <div class="entry-wrapper"> <header class="entry-header"> <h4 class="entry-title"><a href="http://www.dbs724.com/277023.html" title="限制Redis存储次数提升数据安全性(redis限制存储次数)" rel="bookmark">限制Redis存储次数提升数据安全性(redis限制存储次数)</a></h4> </header> </div> </article> </div> <div class="col-6 col-sm-3 col-md-3 mt-10 mb-10"> <article class="post"> <div class="entry-media"> <div class="placeholder" style="padding-bottom: 66.666666666667%;"> <a href="http://www.dbs724.com/277018.html"> <img class="lazyload" data-src="http://www.dbs724.com/wp-content/themes/ripro/assets/images/thumb/1.jpg" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" alt="使用Redis限制系统并发量(redis限制并发)"> </a> </div> </div> <div class="entry-wrapper"> <header class="entry-header"> <h4 class="entry-title"><a href="http://www.dbs724.com/277018.html" title="使用Redis限制系统并发量(redis限制并发)" rel="bookmark">使用Redis限制系统并发量(redis限制并发)</a></h4> </header> </div> </article> </div> <div class="col-6 col-sm-3 col-md-3 mt-10 mb-10"> <article class="post"> <div class="entry-media"> <div class="placeholder" style="padding-bottom: 66.666666666667%;"> <a href="http://www.dbs724.com/277020.html"> <img class="lazyload" data-src="http://www.dbs724.com/wp-content/themes/ripro/assets/images/thumb/1.jpg" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" alt="限制小时内Redis登录次数(redis限制小时登录)"> </a> </div> </div> <div class="entry-wrapper"> <header class="entry-header"> <h4 class="entry-title"><a href="http://www.dbs724.com/277020.html" title="限制小时内Redis登录次数(redis限制小时登录)" rel="bookmark">限制小时内Redis登录次数(redis限制小时登录)</a></h4> </header> </div> </article> </div> <div class="col-6 col-sm-3 col-md-3 mt-10 mb-10"> <article class="post"> <div class="entry-media"> <div class="placeholder" style="padding-bottom: 66.666666666667%;"> <a href="http://www.dbs724.com/277025.html"> <img class="lazyload" data-src="http://www.dbs724.com/wp-content/themes/ripro/assets/images/thumb/1.jpg" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" alt="使用Redis控制网络带宽流量(redis限制带宽)"> </a> </div> </div> <div class="entry-wrapper"> <header class="entry-header"> <h4 class="entry-title"><a href="http://www.dbs724.com/277025.html" title="使用Redis控制网络带宽流量(redis限制带宽)" rel="bookmark">使用Redis控制网络带宽流量(redis限制带宽)</a></h4> </header> </div> </article> </div> <div class="col-6 col-sm-3 col-md-3 mt-10 mb-10"> <article class="post"> <div class="entry-media"> <div class="placeholder" style="padding-bottom: 66.666666666667%;"> <a href="http://www.dbs724.com/277019.html"> <img class="lazyload" data-src="http://www.dbs724.com/wp-content/themes/ripro/assets/images/thumb/1.jpg" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" alt="Redis限制并发的必要性(redis限制并发吗)"> </a> </div> </div> <div class="entry-wrapper"> <header class="entry-header"> <h4 class="entry-title"><a href="http://www.dbs724.com/277019.html" title="Redis限制并发的必要性(redis限制并发吗)" rel="bookmark">Redis限制并发的必要性(redis限制并发吗)</a></h4> </header> </div> </article> </div> <div class="col-6 col-sm-3 col-md-3 mt-10 mb-10"> <article class="post"> <div class="entry-media"> <div class="placeholder" style="padding-bottom: 66.666666666667%;"> <a href="http://www.dbs724.com/277021.html"> <img class="lazyload" data-src="http://www.dbs724.com/wp-content/themes/ripro/assets/images/thumb/1.jpg" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" alt="Redis实现密码输入次数限制(redis限制密码次数)"> </a> </div> </div> <div class="entry-wrapper"> <header class="entry-header"> <h4 class="entry-title"><a href="http://www.dbs724.com/277021.html" title="Redis实现密码输入次数限制(redis限制密码次数)" rel="bookmark">Redis实现密码输入次数限制(redis限制密码次数)</a></h4> </header> </div> </article> </div> <div class="col-6 col-sm-3 col-md-3 mt-10 mb-10"> <article class="post"> <div class="entry-media"> <div class="placeholder" style="padding-bottom: 66.666666666667%;"> <a href="http://www.dbs724.com/277022.html"> <img class="lazyload" data-src="http://www.dbs724.com/wp-content/themes/ripro/assets/images/thumb/1.jpg" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" alt="如何用Redis限制客户端IP访问控制(redis限制客户端ip)"> </a> </div> </div> <div class="entry-wrapper"> <header class="entry-header"> <h4 class="entry-title"><a href="http://www.dbs724.com/277022.html" title="如何用Redis限制客户端IP访问控制(redis限制客户端ip)" rel="bookmark">如何用Redis限制客户端IP访问控制(redis限制客户端ip)</a></h4> </header> </div> </article> </div> <div class="col-6 col-sm-3 col-md-3 mt-10 mb-10"> <article class="post"> <div class="entry-media"> <div class="placeholder" style="padding-bottom: 66.666666666667%;"> <a href="http://www.dbs724.com/277024.html"> <img class="lazyload" data-src="http://www.dbs724.com/wp-content/themes/ripro/assets/images/thumb/1.jpg" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" alt="限制Redis连接多IP访问式阻隔(redis限制多个ip)"> </a> </div> </div> <div class="entry-wrapper"> <header class="entry-header"> <h4 class="entry-title"><a href="http://www.dbs724.com/277024.html" title="限制Redis连接多IP访问式阻隔(redis限制多个ip)" rel="bookmark">限制Redis连接多IP访问式阻隔(redis限制多个ip)</a></h4> </header> </div> </article> </div> </div> </div> </main> </div> </div> <div class="sidebar-column col-lg-3"> <aside class="widget-area"> <div id="custom_html-3" class="widget_text widget widget_custom_html"><div class="textwidget custom-html-widget"></div></div><div id="random_posts-2" class="widget widget_random_posts"><h5 class="widget-title">随机文章</h5><ul><li><a href="http://www.dbs724.com/296392.html" title="Oracle LEN函数的使用方法(oracle len用法)">Oracle LEN函数的使用方法(oracle len用法)</a></li><li><a href="http://www.dbs724.com/296388.html" title="Oracle Level函数简单易用的多层级查询利器(oracle level函数)">Oracle Level函数简单易用的多层级查询利器(oracle level函数)</a></li><li><a href="http://www.dbs724.com/296389.html" title="Oracle Les02学习深入理解Oracle数据库(oracle les02)">Oracle Les02学习深入理解Oracle数据库(oracle les02)</a></li><li><a href="http://www.dbs724.com/296391.html" title="走进 Oracle LE OU 的大门(oracle le ou)">走进 Oracle LE OU 的大门(oracle le ou)</a></li><li><a href="http://www.dbs724.com/296385.html" title="如何避免Oracle LG的应用程序状况(oracle lg)">如何避免Oracle LG的应用程序状况(oracle lg)</a></li><li><a href="http://www.dbs724.com/296386.html" title="Oracle LF用法探究实战指南(oracle lf用法)">Oracle LF用法探究实战指南(oracle lf用法)</a></li><li><a href="http://www.dbs724.com/296393.html" title="Oracle中Len函数的应用(oracle len函数)">Oracle中Len函数的应用(oracle len函数)</a></li><li><a href="http://www.dbs724.com/296394.html" title="Oracle Lenth构建长久企业数据库支撑(oracle lenth)">Oracle Lenth构建长久企业数据库支撑(oracle lenth)</a></li><li><a href="http://www.dbs724.com/296390.html" title="Oracle Les01学习初步,掌握基础知识(oracle les01)">Oracle Les01学习初步,掌握基础知识(oracle les01)</a></li><li><a href="http://www.dbs724.com/296387.html" title="Oracle LF企业部署精准大数据技术(oracle lf)">Oracle LF企业部署精准大数据技术(oracle lf)</a></li></ul></div><div id="custom_html-11" class="widget_text widget widget_custom_html"><div class="textwidget custom-html-widget"></div></div><div id="custom_html-9" class="widget_text widget widget_custom_html"><div class="textwidget custom-html-widget"></div></div><div id="custom_html-7" class="widget_text widget widget_custom_html"><h5 class="widget-title">最近更新</h5><div class="textwidget custom-html-widget"><li><a href="https://www.dbs724.com/476401.html">多种方式教你打开windows电脑的服务</a></li><li><a href="https://www.dbs724.com/199466.html">Redis 为何可用于验证码的存取(验证码放redis吗)</a></li><li><a href="https://www.dbs724.com/193430.html">串MSSQL中实现字符串拼接的方法简介(mssql 拼接字符)</a></li><li><a href="https://www.dbs724.com/194435.html">如何使用MSSQL实例名连接数据库(mssql实例名连接)</a></li><li><a href="https://www.dbs724.com/197283.html">MSSQL安装:使用命令行下载(mssql下载命令)</a></li><li><a href="https://www.dbs724.com/199649.html">启动项目遇到Redis报错,怎么办?(项目启动redis报错)</a></li><li><a href="https://www.dbs724.com/198126.html">mssql2012秘钥精选:完美激活SQL Server 2012(mssql2012秘钥)</a></li><li><a href="https://www.dbs724.com/196601.html">MSSQL数据库中的数字均匀分配(mssql数字均分)</a></li><li><a href="https://www.dbs724.com/196747.html">MSSQL默认排序调整:一个正确的示范(mssql修改 默认排序)</a></li><li><a href="https://www.dbs724.com/195430.html">开数据库MSSQL命令操作指南:如何打开数据库(mssql命令如何打)</a></li></div></div><div id="tag_cloud-2" class="widget widget_tag_cloud"><h5 class="widget-title">标签</h5><div class="tagcloud"><a href="http://www.dbs724.com/tag/linux" class="tag-cloud-link tag-link-58 tag-link-position-1" style="font-size: 21.629139072848pt;" aria-label="Linux (64,955个项目)">Linux</a> <a href="http://www.dbs724.com/tag/linux%e6%95%99%e7%a8%8b" class="tag-cloud-link tag-link-137 tag-link-position-2" style="font-size: 21.629139072848pt;" aria-label="Linux教程 (63,841个项目)">Linux教程</a> <a href="http://www.dbs724.com/tag/linux%e8%b5%84%e8%ae%af" class="tag-cloud-link tag-link-138 tag-link-position-3" style="font-size: 21.629139072848pt;" aria-label="Linux资讯 (63,841个项目)">Linux资讯</a> <a href="http://www.dbs724.com/tag/macos" class="tag-cloud-link tag-link-73 tag-link-position-4" style="font-size: 12.403973509934pt;" aria-label="MacOS (667个项目)">MacOS</a> <a href="http://www.dbs724.com/tag/macos%e6%95%99%e7%a8%8b" class="tag-cloud-link tag-link-144 tag-link-position-5" style="font-size: 12.403973509934pt;" aria-label="MacOS教程 (666个项目)">MacOS教程</a> <a href="http://www.dbs724.com/tag/macos%e8%b5%84%e8%ae%af" class="tag-cloud-link tag-link-145 tag-link-position-6" style="font-size: 12.403973509934pt;" aria-label="MacOS资讯 (666个项目)">MacOS资讯</a> <a href="http://www.dbs724.com/tag/mongodb" class="tag-cloud-link tag-link-49 tag-link-position-7" style="font-size: 12.82119205298pt;" aria-label="MongoDB (817个项目)">MongoDB</a> <a href="http://www.dbs724.com/tag/mongodb%e6%95%99%e7%a8%8b" class="tag-cloud-link tag-link-146 tag-link-position-8" style="font-size: 11.384105960265pt;" aria-label="MongoDB教程 (394个项目)">MongoDB教程</a> <a href="http://www.dbs724.com/tag/mongodb%e8%b5%84%e8%ae%af" class="tag-cloud-link tag-link-147 tag-link-position-9" style="font-size: 11.384105960265pt;" aria-label="MongoDB资讯 (394个项目)">MongoDB资讯</a> <a href="http://www.dbs724.com/tag/mssql" class="tag-cloud-link tag-link-80 tag-link-position-10" style="font-size: 11.708609271523pt;" aria-label="MSSQL (465个项目)">MSSQL</a> <a href="http://www.dbs724.com/tag/mssql%e9%94%99%e8%af%af" class="tag-cloud-link tag-link-107 tag-link-position-11" style="font-size: 8.3245033112583pt;" aria-label="MSSQL错误 (86个项目)">MSSQL错误</a> <a href="http://www.dbs724.com/tag/mysql" class="tag-cloud-link tag-link-15 tag-link-position-12" style="font-size: 20.933774834437pt;" aria-label="MySQL (46,004个项目)">MySQL</a> <a href="http://www.dbs724.com/tag/mysql%e6%95%99%e7%a8%8b" class="tag-cloud-link tag-link-130 tag-link-position-13" style="font-size: 20.887417218543pt;" aria-label="mysql教程 (44,967个项目)">mysql教程</a> <a href="http://www.dbs724.com/tag/mysql%e7%bb%b4%e6%8a%a4" class="tag-cloud-link tag-link-104 tag-link-position-14" style="font-size: 15.278145695364pt;" aria-label="MySQL维护 (2,785个项目)">MySQL维护</a> <a href="http://www.dbs724.com/tag/mysql%e8%b5%84%e8%ae%af" class="tag-cloud-link tag-link-136 tag-link-position-15" style="font-size: 20.887417218543pt;" aria-label="MySQL资讯 (44,271个项目)">MySQL资讯</a> <a href="http://www.dbs724.com/tag/neo4j" class="tag-cloud-link tag-link-46 tag-link-position-16" style="font-size: 8.046357615894pt;" aria-label="Neo4j (74个项目)">Neo4j</a> <a href="http://www.dbs724.com/tag/neo4j%e6%95%99%e7%a8%8b" class="tag-cloud-link tag-link-140 tag-link-position-17" style="font-size: 8pt;" aria-label="Neo4j教程 (73个项目)">Neo4j教程</a> <a href="http://www.dbs724.com/tag/neo4j%e8%b5%84%e8%ae%af" class="tag-cloud-link tag-link-141 tag-link-position-18" style="font-size: 8pt;" aria-label="Neo4j资讯 (73个项目)">Neo4j资讯</a> <a href="http://www.dbs724.com/tag/oracle" class="tag-cloud-link tag-link-11 tag-link-position-19" style="font-size: 21.953642384106pt;" aria-label="ORACLE (76,362个项目)">ORACLE</a> <a href="http://www.dbs724.com/tag/oracle%e4%bc%98%e5%8c%96" class="tag-cloud-link tag-link-66 tag-link-position-20" style="font-size: 8.6953642384106pt;" aria-label="Oracle优化 (104个项目)">Oracle优化</a> <a href="http://www.dbs724.com/tag/oracle%e5%86%85%e9%83%a8%e8%a7%86%e5%9b%be" class="tag-cloud-link tag-link-124 tag-link-position-21" style="font-size: 14.119205298013pt;" aria-label="oracle内部视图 (1,564个项目)">oracle内部视图</a> <a href="http://www.dbs724.com/tag/oracle%e5%8f%82%e6%95%b0" class="tag-cloud-link tag-link-127 tag-link-position-22" style="font-size: 8.6026490066225pt;" aria-label="oracle参数 (100个项目)">oracle参数</a> <a href="http://www.dbs724.com/tag/oracle%e5%bc%80%e5%8f%91" class="tag-cloud-link tag-link-126 tag-link-position-23" style="font-size: 14.119205298013pt;" aria-label="oracle开发 (1,564个项目)">oracle开发</a> <a href="http://www.dbs724.com/tag/oracle%e5%bc%82%e5%b8%b8%e4%bf%ae%e5%a4%8d" class="tag-cloud-link tag-link-95 tag-link-position-24" style="font-size: 14.629139072848pt;" aria-label="oracle异常修复 (1,992个项目)">oracle异常修复</a> <a href="http://www.dbs724.com/tag/oracle%e6%95%85%e9%9a%9c%e5%a4%84%e7%90%86" class="tag-cloud-link tag-link-94 tag-link-position-25" style="font-size: 17.827814569536pt;" aria-label="oracle故障处理 (9,728个项目)">oracle故障处理</a> <a href="http://www.dbs724.com/tag/oracle%e6%95%99%e7%a8%8b" class="tag-cloud-link tag-link-125 tag-link-position-26" style="font-size: 22pt;" aria-label="oracle教程 (78,327个项目)">oracle教程</a> <a href="http://www.dbs724.com/tag/oracle%e7%bb%b4%e6%8a%a4" class="tag-cloud-link tag-link-96 tag-link-position-27" style="font-size: 17.827814569536pt;" aria-label="oracle维护 (9,728个项目)">oracle维护</a> <a href="http://www.dbs724.com/tag/oracle%e8%a7%86%e5%9b%be" class="tag-cloud-link tag-link-123 tag-link-position-28" style="font-size: 12.12582781457pt;" aria-label="oracle视图 (579个项目)">oracle视图</a> <a href="http://www.dbs724.com/tag/oracle%e8%b5%84%e8%ae%af" class="tag-cloud-link tag-link-139 tag-link-position-29" style="font-size: 21.953642384106pt;" aria-label="ORACLE资讯 (75,085个项目)">ORACLE资讯</a> <a href="http://www.dbs724.com/tag/oracle%e8%bf%9c%e7%a8%8b%e7%bb%b4%e6%8a%a4" class="tag-cloud-link tag-link-97 tag-link-position-30" style="font-size: 14.629139072848pt;" aria-label="oracle远程维护 (1,992个项目)">oracle远程维护</a> <a href="http://www.dbs724.com/tag/ora%e9%94%99%e8%af%af%e7%a0%81" class="tag-cloud-link tag-link-93 tag-link-position-31" style="font-size: 14.443708609272pt;" aria-label="ORA错误码 (1,822个项目)">ORA错误码</a> <a href="http://www.dbs724.com/tag/redis" class="tag-cloud-link tag-link-50 tag-link-position-32" style="font-size: 20.099337748344pt;" aria-label="Redis (30,078个项目)">Redis</a> <a href="http://www.dbs724.com/tag/redis%e6%95%99%e7%a8%8b" class="tag-cloud-link tag-link-134 tag-link-position-33" style="font-size: 20.006622516556pt;" aria-label="Redis教程 (29,067个项目)">Redis教程</a> <a href="http://www.dbs724.com/tag/redis%e8%b5%84%e8%ae%af" class="tag-cloud-link tag-link-135 tag-link-position-34" style="font-size: 20.006622516556pt;" aria-label="Redis资讯 (29,067个项目)">Redis资讯</a> <a href="http://www.dbs724.com/tag/sqlserver" class="tag-cloud-link tag-link-25 tag-link-position-35" style="font-size: 19.218543046358pt;" aria-label="SQLServer (19,346个项目)">SQLServer</a> <a href="http://www.dbs724.com/tag/sqlserver%e6%8a%a5%e9%94%99" class="tag-cloud-link tag-link-108 tag-link-position-36" style="font-size: 8.3245033112583pt;" aria-label="SQLServer报错 (86个项目)">SQLServer报错</a> <a href="http://www.dbs724.com/tag/sqlserver%e6%95%99%e7%a8%8b" class="tag-cloud-link tag-link-142 tag-link-position-37" style="font-size: 19.079470198675pt;" aria-label="SQLServer教程 (18,161个项目)">SQLServer教程</a> <a href="http://www.dbs724.com/tag/sqlserver%e8%b5%84%e8%ae%af" class="tag-cloud-link tag-link-143 tag-link-position-38" style="font-size: 19.079470198675pt;" aria-label="SQLServer资讯 (18,161个项目)">SQLServer资讯</a> <a href="http://www.dbs724.com/tag/sql%e4%bf%ae%e5%a4%8d" class="tag-cloud-link tag-link-109 tag-link-position-39" style="font-size: 8.3245033112583pt;" aria-label="SQL修复 (86个项目)">SQL修复</a> <a href="http://www.dbs724.com/tag/sql%e5%bc%82%e5%b8%b8" class="tag-cloud-link tag-link-110 tag-link-position-40" style="font-size: 8.3245033112583pt;" aria-label="SQL异常 (86个项目)">SQL异常</a> <a href="http://www.dbs724.com/tag/sql%e8%bf%9c%e7%a8%8b%e5%a4%84%e7%90%86" class="tag-cloud-link tag-link-111 tag-link-position-41" style="font-size: 8.3245033112583pt;" aria-label="SQL远程处理 (86个项目)">SQL远程处理</a> <a href="http://www.dbs724.com/tag/windows" class="tag-cloud-link tag-link-75 tag-link-position-42" style="font-size: 8.8344370860927pt;" aria-label="Windows (110个项目)">Windows</a> <a href="http://www.dbs724.com/tag/%e6%8a%80%e6%9c%af%e6%96%87%e6%a1%a3" class="tag-cloud-link tag-link-13 tag-link-position-43" style="font-size: 17.132450331126pt;" aria-label="技术文档 (6,902个项目)">技术文档</a> <a href="http://www.dbs724.com/tag/%e6%93%8d%e4%bd%9c%e7%b3%bb%e7%bb%9f" class="tag-cloud-link tag-link-8 tag-link-position-44" style="font-size: 13.748344370861pt;" aria-label="操作系统 (1,300个项目)">操作系统</a> <a href="http://www.dbs724.com/tag/%e6%95%b0%e6%8d%ae%e5%ba%93" class="tag-cloud-link tag-link-14 tag-link-position-45" style="font-size: 14.675496688742pt;" aria-label="数据库 (2,027个项目)">数据库</a></div> </div><div id="custom_html-12" class="widget_text widget widget_custom_html"><div class="textwidget custom-html-widget"></div></div></aside> </div> </div> </div> </div><!-- end sitecoent --> <footer class="site-footer"> <div class="container"> <div class="footer-widget"> <div class="row"> <div class="col-xs-12 col-sm-6 col-md-3 widget--about"> <div class="widget--content"> <div class="footer--logo mb-20"> <img class="tap-logo" src="http://www.dbs724.com/wp-content/uploads/2022/06/1655696806-3609d62f8271ca9.png" data-dark="http://www.dbs724.com/wp-content/uploads/2022/06/1655696806-3609d62f8271ca9.png" alt="数据运维技术"> </div> <p class="mb-10">技术标签:安装配置、性能优化、备份恢复、异常处理、数据迁移、咨询服务。</p> </div> </div> <!-- .col-md-2 end --> <div class="col-xs-12 col-sm-3 col-md-2 col-md-offset-1 widget--links"> <div class="widget--title"> <h5>本站导航</h5> </div> <div class="widget--content"> <ul class="list-unstyled mb-0"> <li><a target="_blank" href="http://www.dbs724.com/service">服务范围</a></li><li><a target="_blank" href="http://www.dbs724.com/about">关于我们</a></li><li><a target="_blank" href="http://www.dbs724.com/privacy">隐私政策</a></li> </ul> </div> </div> <!-- .col-md-2 end --> <div class="col-xs-12 col-sm-3 col-md-2 widget--links"> <div class="widget--title"> <h5>技术文章</h5> </div> <div class="widget--content"> <ul class="list-unstyled mb-0"> <li><a target="_blank" href="http://www.dbs724.com/db">数据库技术</a></li><li><a target="_blank" href="http://www.dbs724.com/os">操作系统技术</a></li><li><a target="_blank" href="http://www.dbs724.com/jc">教程服务</a></li> </ul> </div> </div> <!-- .col-md-2 end --> <div class="col-xs-12 col-sm-12 col-md-4 widget--newsletter"> <div class="widget--title"> <h5>快速搜索</h5> </div> <div class="widget--content"> <form class="newsletter--form mb-30" action="http://www.dbs724.com/" method="get"> <input type="text" class="form-control" name="s" placeholder="关键词"> <button type="submit"><i class="fa fa-arrow-right"></i></button> </form> <h6>数据恢复、异常处理、MySQL、Oracle</h6> </div> </div> </div> </div> <div class="site-info"> 本站部分资源来自互联网收集,仅供用于学习和交流,本站一切资源不代表本站立场,如有侵权、后门、不妥请联系本站站长删除<br /> © 2020 Theme by - <a href="http://www.dbs724.com" target="_blank" rel="noreferrer nofollow">数据服务</a> . All rights reserved <a href="https://beian.miit.gov.cn" target="_blank" class="text" rel="noreferrer nofollow"> 苏ICP备15021567号</a> <br> </div> </div> </footer> <div class="rollbar"> <div class="rollbar-item tap-qq" etap="tap-qq"><a target="_blank" title="QQ咨询" href="http://wpa.qq.com/msgrd?v=3&uin=290190032&site=qq&menu=yes"><i class="fa fa-qq"></i></a></div> <div class="rollbar-item tap-blog-style" etap="tap-blog-style" data-id="1" title="博客模式"><i class="fa fa-list"></i></div> <div class="rollbar-item" etap="to_full" title="全屏页面"><i class="fa fa-arrows-alt"></i></div> <div class="rollbar-item" etap="to_top" title="返回顶部"><i class="fa fa-angle-up"></i></div> </div> <div class="dimmer"></div> <div id="popup-signup" class="popup-signup fade" style="display: none;"> <div class="register-login-modal" role="document"> <div class="modal-content"> <div class="modal-body"> <img class="popup-logo" src="http://www.dbs724.com/wp-content/uploads/2022/06/1655696806-3609d62f8271ca9.png" data-dark="http://www.dbs724.com/wp-content/uploads/2022/06/1655696806-3609d62f8271ca9.png" alt="数据运维技术"> <!-- Nav tabs --> <ul class="nav nav-tabs"> <li class="active"><a href="#login" data-toggle="login">登录</a> </li> <li><a href="#signup" data-toggle="signup">注册</a> </li> </ul> <!-- Tab panes --> <div class="tab-content"> <div class="tab-pane fade in active" id="login"> <div class="signup-form-container text-center"> <form class="mb-0"> <div class="form-group"> <input type="text" class="form-control" name="username" placeholder="*用户名或邮箱"> </div> <div class="form-group"> <input type="password" class="form-control" name="password" placeholder="*密码"> </div> <button type="button" class="go-login btn btn--primary btn--block"><i class="fa fa-bullseye"></i> 安全登录</button> <!-- <a href="#" class="forget-password">忘记密码?</a> --> </form> <!-- form end --> </div> <!-- .signup-form end --> </div> <div class="tab-pane fade in" id="signup"> <form class="mb-0"> <div class="form-group"> <input type="text" class="form-control" name="user_name" placeholder="输入英文用户名"> </div> <!-- .form-group end --> <div class="form-group"> <input type="email" class="form-control" name="user_email" placeholder="绑定邮箱"> </div> <!-- .form-group end --> <div class="form-group"> <input type="password" class="form-control" name="user_pass" placeholder="密码最小长度为6"> </div> <div class="form-group"> <input type="password" class="form-control" name="user_pass2" placeholder="再次输入密码"> </div> <button type="button" class="go-register btn btn--primary btn--block"><i class="fa fa-bullseye"></i> 立即注册</button> </form> <!-- form end --> </div> </div> <a target="_blank" href="http://www.dbs724.com/wp-login.php?action=lostpassword" class="rest-password">忘记密码?</a> </div> <!-- /.modal-content --> </div> <!-- /.modal-dialog --> </div> <!-- /.modal --> </div> <div class="off-canvas"> <div class="canvas-close"><i class="mdi mdi-close"></i></div> <div class="logo-wrapper"> <a href="http://www.dbs724.com/"> <img class="logo regular" src="http://www.dbs724.com/wp-content/uploads/2022/06/1655696806-3609d62f8271ca9.png" alt="数据运维技术"> </a> </div> <div class="mobile-menu hidden-lg hidden-xl"></div> <aside class="widget-area"> </aside> </div> <script> console.log("SQL 请求数:86"); console.log("页面生成耗时: 0.78103"); </script> <script charset="UTF-8" id="LA_COLLECT" src="//sdk.51.la/js-sdk-pro.min.js"></script> <script>LA.init({id: "Jl4g3Wa27APmJARl",ck: "Jl4g3Wa27APmJARl"})</script> <script id="imwpf-this-page"> var g_this_page = { "type": "post", "id": 54208, "terms": [{"id":null,"tax":null},{"id":null,"tax":null},{"id":null,"tax":null},{"id":null,"tax":null},{"id":null,"tax":null},{"id":null,"tax":null},{"id":null,"tax":null},{"id":null,"tax":null}] };console.log(g_this_page); </script><div class="imwpcache_status_ok"></div><script type='text/javascript' src='//www.dbs724.com/wp-content/themes/ripro/assets/js/plugins.js?ver=9.0' id='plugins-js'></script> <script type='text/javascript' id='app-js-extra'> /* <![CDATA[ */ var caozhuti = {"site_name":"\u6570\u636e\u8fd0\u7ef4\u6280\u672f","home_url":"https:\/\/www.dbs724.com","ajaxurl":"https:\/\/www.dbs724.com\/wp-admin\/admin-ajax.php","is_singular":"1","tencent_captcha":{"is":"","appid":""},"infinite_load":"\u52a0\u8f7d\u66f4\u591a","infinite_loading":"<i class=\"fa fa-spinner fa-spin\"><\/i> \u52a0\u8f7d\u4e2d...","site_notice":{"is":"0","color":"#fd7300","html":"<div class=\"notify-content\"><h3><i class=\"fa fa-bell-o mr-2\"><\/i>\u6570\u636e\u670d\u52a1\u516c\u544a<\/h3><div>\u672c\u7ad9\u4e3b\u8981\u63d0\u4f9b\u6280\u672f\u670d\u52a1\u53ca\u54a8\u8be2\u4ea4\u6d41\uff0c\u4efb\u4f55\u6570\u636e\u5e93\u3001\u7f51\u7ad9\u3001\u670d\u52a1\u5668\u95ee\u9898\u90fd\u53ef\u4ee5\u8054\u7cfb\u7ad9\u957f\uff0c\u4e3a\u60a8\u89e3\u51b3\u95ee\u9898\uff0c\u6536\u53d6\u9002\u5f53\u8d39\u7528\u3002<\/div><\/div>"},"pay_type_html":{"html":"<div class=\"pay-button-box\"><\/div><p style=\"font-size: 13px; padding: 0; margin: 0;\">\u514d\u8d39\u6216\u94bb\u77f3\u514d\u8d39\u8d44\u6e90\u4ec5\u9650\u4f59\u989d\u652f\u4ed8<\/p>","alipay":0,"weixinpay":0}}; /* ]]> */ </script> <script type='text/javascript' src='//www.dbs724.com/wp-content/themes/ripro/assets/js/app.js?ver=9.0' id='app-js'></script> <script type='text/javascript' src='//www.dbs724.com/wp-content/themes/ripro/assets/js/plugins/html2canvas.min.js?ver=1.0.0' id='html2canvas-js'></script> <script type='text/javascript' src='//www.dbs724.com/wp-content/themes/ripro/assets/js/plugins/jquery.fancybox.min.js?ver=9.0' id='fancybox-js'></script> <script type='text/javascript' src='//www.dbs724.com/wp-includes/js/comment-reply.min.js?ver=6.0' id='comment-reply-js'></script> <script type='text/javascript' src='//www.dbs724.com/wp-content/plugins/WBOLT-чЩ╛х║жцОищАБчобчРЖ-3.4.4-Pro/assets/baidu_push.js' id='wb-baidu-push-js'></script> <style> .header-gap { height: 65px; } table tbody tr td, table tbody tr td { padding: 0px; } #cus_top_ads td { padding: 0px; } #cha_top_content ul { padding: 0px; margin: 10px 0 20px 0px; } #cha_top_content li { float: left; margin-right: 10px; list-style: none; } #cha_top_content li:last-child { /*float: none;*/ margin-right: 0px; } #cha_top_content img{ width: 383px; height: 75px; } #custom_html-10 { padding: 0px; } #custom_html-11 { padding: 0px; } /**/ #custom_html-12{ padding: 0px; } #custom_html-13{ padding: 0px; } #custom_html-14{ padding: 0px; } #post-top-ads a { margin-bottom: 15px; } #post-top-ads img { width: 100%; height: 80px; } #archive-top-ads a { margin-bottom: 15px; } #archive-top-ads img { width: 100%; height: 80px; } #menu-item-476359{ display: none; } .filter--content { margin-bottom: 15px; } .meta-author{ display: none; } .author-box { display: none; } #home-top-ads img { width: 100%; height: 80px; margin-top: 10px; } </style> <script src="/static/customer.js?ver=1.20231111?ver=4"></script> </body> </html>