目录
Common Causes, Diagnosis, and Actions
Sequential Reads Against Indexes
Sequential Reads Against Tables
System-Level Diagnosis
首页 数据库 mysql教程 dbfilesequentialread等待事件总结

dbfilesequentialread等待事件总结

Jun 07, 2016 pm 03:22 PM
事件 总结 等待

db file sequential read The db file sequential read wait event has three parameters: file#, first block#, and block count. In Oracle Database 10 g , this wait event falls under the User I/O wait class. Keep the following key thoughts in mi

db file sequential read

The db file sequential read wait event has three parameters: file#, first block#, and block count. In Oracle Database 10g, this wait event falls under the User I/O wait class. Keep the following key thoughts in mind when dealing with the db file sequential read wait event.

该等待事件的参数:file#,first block#,and block count(一般是1)可以从dba_extents去确定访问的段,属于I/O类的等待。

    The Oracle process wants a block that is currently not in the SGA, and it is waiting for the database block to be read into the SGA from disk.

    The two important numbers to look for are the TIME_WAITED and AVERAGE_WAIT by individual sessions.

    Significant db file sequential read wait time is most likely an application issue.

    Common Causes, Diagnosis, and Actions

    The db file sequential read wait event is initiated by SQL statements (both user and recursive) that perform single-block read operations against indexes, rollback (or undo) segments, and tables (when accessed via rowid), control files and data file headers. This wait event normally appears as one of the top five wait events, according to systemwide waits.

    Physical I/O requests for these objects are perfectly normal, so the presence of the db file sequential read waits in the database does not necessarily mean that there is something wrong with the database or the application. It may not even be a bad thing if a session spends a lot of time on this event. In contrast, it is definitely bad if a session spends a lot of time on events like enqueue or latch free. This is where this single-block read subject becomes complicated. At what point does the db file sequential read event become an issue? How do you define excessive? Where do you draw the line? These are tough questions, and there is no industry standard guideline. You should establish a guideline for your environment. For example, you may consider it excessive when the db file sequential read wait represents a large portion of a process response time. Another way is to simply adopt the nonscientific hillbilly approach—that is, wait till the users start screaming.

    You can easily discover which session has high TIME_WAITED on the db file sequential read wait event from the V$SESSION_EVENT view. The TIME_WAITED must be evaluated with the LOGON_TIME and compared with other nonidle events that belong to the session for a more accurate analysis. Sessions that have logged on for some time (days or weeks) may accumulate a good amount of time on the db file sequential read event. In this case, a high TIME_WAITED may not be an issue. Also, when the TIME_WAITED is put in perspective with other nonidle events, it prevents you from being blindsided. You may find another wait event which is of a greater significance. Based on the following example, SID# 192 deserves your attention and should be investigated:

    当进程需要的信息不在SGA,要等从磁盘读入SGA中,此时进程等待此事件。

    一般是由sql或者递归sql中发出,从索引,回滚段,表(rowid回表),控制文件,数据文件头处读取信息。

    select a.sid,
           a.event,
           a.time_waited,
           a.time_waited / c.sum_time_waited * 100 pct_wait_time,
           round((sysdate - b.logon_time) * 24) hours_connected
    from   v$session_event a, v$session b,
           (select sid, sum(time_waited) sum_time_waited
            from   v$session_event
            where  event not in (
                        'Null event',
                        'client message',
                        'KXFX: Execution Message Dequeue - Slave',
                        'PX Deq: Execution Msg',
                        'KXFQ: kxfqdeq - normal deqeue',
                        'PX Deq: Table Q Normal',
                        'Wait for credit - send blocked',
                        'PX Deq Credit: send blkd',
                        'Wait for credit - need buffer to send',
                        'PX Deq Credit: need buffer',
                        'Wait for credit - free buffer',
                        'PX Deq Credit: free buffer',
                        'parallel query dequeue wait',
                        'PX Deque wait',
                        'Parallel Query Idle Wait - Slaves',
                        'PX Idle Wait',
                        'slave wait',
                        'dispatcher timer',
                        'virtual circuit status',
                        'pipe get',
                        'rdbms ipc message',
                        'rdbms ipc reply',
                        'pmon timer',
                        'smon timer',
                        'PL/SQL lock timer',
                        'SQL*Net message from client',
                        'WMON goes to sleep')
            having sum(time_waited) > 0 group by sid) c
    where  a.sid         = b.sid
    and    a.sid         = c.sid
    and    a.time_waited > 0
    and    a.event       = 'db file sequential read'
    order by hours_connected desc, pct_wait_time;
    
    
     SID EVENT                   TIME_WAITED PCT_WAIT_TIME HOURS_CONNECTED
    ---- ----------------------- ----------- ------------- ---------------
     186 db file sequential read       64446    77.0267848             105
     284 db file sequential read     1458405     90.992838             105
     194 db file sequential read     1458708    91.0204316             105
     322 db file sequential read     1462557    91.1577045             105
     139 db file sequential read      211325    52.6281055              11
     256 db file sequential read      247236    58.0469755              11
    ?<strong>192 db file sequential read      243113    88.0193625               2</strong>
    
    登录后复制

    There are two things you can do to minimize the db file sequential read waits:

      Optimize the SQL statement that initiated most of the waits by reducing the number of physical and logical reads.

      Reduce the average wait time.

      Unless you trace a session with the event 10046 or have a continuously running wait event data collector as discussed in Chapter 4, it is difficult to determine the SQL statement that is responsible for the cumulated wait time. Take the preceding SID #192 again, for example. The 243113 centiseconds wait time may be caused by one long-running or many fast SQL statements. The latter case may not be an issue. Furthermore, the SQL statement that is currently running may or may not be the one that is responsible for the waits. This is why interactive diagnosis without historical data is often unproductive. You can query the V$SQL view for statements with high average DISK_READS, but then how can you tell they belong to the session? Due to these limitations, you may have to identify and trace the session the next time around to nail down the offending SQL statement. Once you have found it, the optimization goal is to reduce the amount of physical and logical reads.

      Note

      In addition to the DISK_READS column, the V$SQL and V$SQLAREA views in Oracle Database 10g have exciting new columns: USER_IO_WAIT_TIME, DIRECT_WRITES, APPLICATION_WAIT_TIME, CONCURRENCY_WAIT_TIME, CLUSTER_WAIT_TIME, PLSQL_EXEC_TIME, and JAVA_EXEC_TIME. You can discover the SQL statement with the highest cumulative or average USER_IO_WAIT_TIME.

      Another thing you can do to minimize the impact of the db file sequential read event is reduce the AVERAGE_WAIT time. This is the average time a session has to wait for a single block fetch from disk; the information is available in the V$SESSION_EVENT view. In newer storage subsystems, an average single-block read shouldn’t take more than 10ms (milliseconds) or 1cs (centisecond). You should expect an average wait time of 4 to 8ms (0.4 to 0.8cs) with SAN (storage area network) due to large caches. The higher the average wait time, the costlier it is to perform a single-block read, and the overall process response time will suffer. On the other hand, a lower average wait time is more forgiving and has a lesser impact on the response times of processes that perform a lot of single-block reads. (We are not encouraging you to improve the average wait time to avoid SQL optimization. If the application has SQL statements that perform excessive amounts of single-block reads, they must first be inspected and optimized.) The db file sequential read “System-Level Diagnosis” section has some ideas on how to improve the AVERAGE_WAIT time.

      As you monitor a session and come across the db file sequential read event, you should translate its P1 and P2 parameters into the object that they represent. You will find that the object is normally an index or a table. The DBA_EXTENTS view is commonly used for object name resolution. However, as mentioned in Chapter 4, the DBA_EXTENTS is a complex view and is not query-friendly in regards to performance. Object name resolution is much faster using the X$BH and DBA_OBJECTS views. The caveat is that you must wait for the block to be read into the buffer cache; otherwise the X$BH view has no information on the buffer that is referenced by the P1 and P2 parameters. Also, the DBA_OBJECTS view does not contain rollback or undo segment objects that the P1 and P2 parameters may be referencing.

      要减少这个等待事件,要么减少它的次数,要么减少平均等待时间。通过调优SQL来减少逻辑读,留意效率低的大范围索引扫描回表(可能全表扫更好),可以减低次数。用更高响应时间的存储,分散热点文件,可以减轻平均等待时间。在新的存储子系统,平均单块读等待时间不应超过10ms(千分之一秒),如果用有大cache的SAN一般4-8ms为佳。通过p1与p2参数与dba_extents视图,我们定位到等待访问的段,然后来分散热点。

      --这段SQL的找出频繁发生db file sequential read的对象。

      select b.sid,
             nvl(substr(a.object_name,1,30),
                        'P1='||b.p1||' P2='||b.p2||' P3='||b.p3) object_name,
             a.subobject_name,
             a.object_type
      from   dba_objects a, v$session_wait b, x$bh c
      where  c.obj = a.object_id(&#43;)
      and    b.p1 = c.file#(&#43;)
      and    b.p2 = c.dbablk(&#43;)
      and    b.event = 'db file sequential read'
      union
      select b.sid,
             nvl(substr(a.object_name,1,30),
                        'P1='||b.p1||' P2='||b.p2||' P3='||b.p3) object_name,
             a.subobject_name,
             a.object_type
      from   dba_objects a, v$session_wait b, x$bh c
      where  c.obj = a.data_object_id(&#43;)
      and    b.p1 = c.file#(&#43;)
      and    b.p2 = c.dbablk(&#43;)
      and    b.event = 'db file sequential read'
      order  by 1;
      
        SID OBJECT_NAME               SUBOBJECT_NAME            OBJECT_TYPE
      ----- ------------------------- ------------------------- -----------------
         12 DVC_TRX_REPOS             DVC_TRX_REPOS_PR64        TABLE PARTITION
        128 DVC_TRX_REPOS             DVC_TRX_REPOS_PR61        TABLE PARTITION
        154 ERROR_QUEUE               ERROR_QUEUE_PR1           TABLE PARTITION
        192 DVC_TRX_REPOS_1IX         DVC_TRX_REPOS_20040416    INDEX PARTITION
        194 P1=22 P2=30801 P3=1
        322 P1=274 P2=142805 P3=1
        336 HOLD_Q1_LIST_PK                                     INDEX
      
      登录后复制

      Sequential Reads Against Indexes

      The main issue is not index access; it is waits that are caused by excessive and unwarranted index reads. If the db file sequential read event represents a significant portion of a session’s response time, all that tells you is that the application is doing a lot of index reads. This is an application issue. Inspect the execution plans of the SQL statements that access data through indexes. Is it appropriate for the SQL statements to access data through index lookups? Is the application an online transaction processing (OLTP) or decision support system (DSS)? Would full table scans be more efficient? Do the statements use the right driving table? And so on. The optimization goal is to minimize both the number of logical and physical I/Os.

      If you have access to the application code, you should examine the application logic. Look at the overall logic and understand what it is trying to do. You may be able to recommend a better approach.

      Index reads performance can be affected by slow I/O subsystem and/or poor database files layout, which result in a higher average wait time. However, I/O tuning should not be prioritized over the application and SQL tuning, which many DBAs often do. I/O tuning does not solve the problem if SQL statements are not optimized and the demand for physical I/Os remains high. You should also push back when the application team tries to circumvent code changes by asking for more powerful hardware. Getting the application team to change the code can be like pulling teeth. If the application is a rigid third-party solution, you may explore the stored outline feature, introduce new indexes, or modify the current key compositions whenever appropriate.

      In addition to SQL tuning, it may also be worthwhile to check the index’s clustering factor if the execution plan calls for table access by index rowid. The clustering factor of an index defines how ordered the rows are in the table. It affects the number of I/Os required for the whole operation. If the DBA_INDEXES.CLUSTERING_FACTOR of the index approaches the number of blocks in the table, then most of the rows in the table are ordered. This is desirable. However, if the clustering factor approaches the number of rows in the table, it means the rows in the table are randomly ordered. In this case, it is unlikely for the index entries in the same leaf block to point to rows in the same data block, and thus it requires more I/Os to complete the operation. You can improve the index’s clustering factor by rebuilding the table so that rows are ordered according to the index key and rebuilding the index thereafter. What happens if the table has more than one index? Well, that is the downside. You can only cater to the most used index.

      Also check to see if the application has recently introduced a new index using the following query. The introduction of a new index in the database may cause the optimizer to choose a different execution plan for SQL statements that access the table. The new plan may yield a better, neutral, or worse performance than the old one.

      cluster_factor——表明有多少邻近的索引条目指到不同的数据块。如果表里的数据与索引排序是相似的,聚簇因子就小,最小值是表里非空的数据块总数。如果表里的数据和索引排序迥异,聚簇因子就大,最大值是索引中的键数。值越小,越表明表行是有序存储的

      select owner, 
             substr(object_name,1,30) object_name, 
             object_type, 
             created
      from   dba_objects
      where  object_type in ('INDEX','INDEX PARTITION')
      order by created;
      登录后复制

      The OPTIMIZER_INDEX_COST_ADJ and OPTIMIZER_INDEX_CACHING initialization parameters can influence the optimizer to favor the nested loops operation and choose an index access path over a full table scan. The default value for the OPTIMIZER_INDEX_COST_ADJ parameter is 100. A lower value tricks the optimizer into thinking that index access paths are cheaper. The default value for the OPTIMIZER_INDEX_CACHING parameter is 0. A higher value informs the optimizer that a higher percentage of index blocks is already in the buffer cache and that nested loops operations are cheaper. Some third-party applications use this method to promote index usage. Inappropriate use of these parameters can cause significant I/O wait time. Find out what values the sessions are running with. Up to Oracle9i Database, this information could only be obtained by tracing the sessions with the trace event 10053 at level 1 and examining the trace files. In Oracle Database 10g, this is as simple as querying the V$SES_OPTIMIZER_ENV view.

      Make sure all object statistics are representative of the current data, as inaccurate statistics can certainly cause the optimizer to generate poor execution plans that call for index reads when they shouldn’t. Remember, statistics need to be representative and not necessarily up-to-date, and execution plan may change each time statistics are gathered.

      Note

      When analyzing tables or indexes with a low ESTIMATE value, Oracle normally uses single block reads, and this will add to the db file sequential read statistics for the session (V$SESSION_EVENT) and instance (V$SYSTEM_EVENT).

      Sequential Reads Against Tables

      You may see db file sequential read wait events in which the P1 and P2 parameters resolve to a table instead of an index. This is normal for SQL statements that access tables by rowids obtained from the indexes, as shown in the following explain plan. Oracle uses single-block I/O when reading a table by rowids.

      LVL OPERATION                         OBJECT                
      --- --------------------------------- ---------------------
        1 SELECT STATEMENT 
        2   TABLE ACCESS BY INDEX ROWID     RESOURCE_ASGN_SNP   
        3     INDEX RANGE SCAN              RESOURCE_ASGN_SNP_4IX
      登录后复制

      System-Level Diagnosis

      The V$SYSTEM_EVENT view provides the data for system-level diagnosis. For I/O related events, the two columns of interest are the AVERAGE_WAIT and TIME_WAITED.

      Remember to evaluate the TIME_WAITED with the instance startup in mind. It is normal for an older instance to show a higher db file sequential read wait time. Also, always query the V$SYSTEM_EVENT view in the order of TIME_WAITED such as in the following example. This allows you to compare the db file sequential read waits with other significant events in the system. If the db file sequential read wait time is not in the top five category, don’t worry about it because you have bigger fish to fry. Even if the db file sequential read wait time is in the top five category, all it tells you is that the database has seen a lot of single-block I/O calls. The high wait time may be comprised of waits from many short-running OLTP sessions or a few long-running batch processes, or both. At the system level, there is no information as to who made the I/O calls, when the calls were made, what objects were accessed, and the SQL statements that initiated the calls. In other words, system-level statistics offer very limited diagnosis capability.

      select a.event, 
             a.total_waits, 
             a.time_waited, 
             a.time_waited/a.total_waits average_wait,
             sysdate – b.startup_time days_old
      from   v$system_event a, v$instance b
      order by a.time_waited;
      登录后复制

      The AVERAGE_WAIT column is more useful. We showed what you should consider as normal in the preceding paragraphs. If your average single-block read wait time exceeds this allowance, you may have a problem in the I/O subsystem or hot spots on disk. If your database is built on file systems, make sure the database mount points contain only Oracle files. Do not share your database mount points with the application or another database. Also, if possible, avoid sharing I/O devices. Several mount points can be mapped to the same I/O device. According to the following Veritas vxprint output, mount points u02, u03, u04, and u05 are all mapped to device c2t2d0. You should find out how your database files are mapped to I/O controllers and I/O devices or physical disks. For databases on the Veritas file system, the vxprint –ht command shows the mount point mappings.

      v  oracle_u02   -            ENABLED  ACTIVE   20480000 fsgen  -      SELECT
      pl oracle_u02-01 oracle_u02  ENABLED  ACTIVE   20482560 CONCAT -      RW
      sd oracle01-01  oracle_u02-01 oracle01 0       20482560 0      <strong>c2t2d0</strong> ENA
      
      
      v  oracle_u03   -            ENABLED  ACTIVE   20480000 fsgen  -      SELECT
      pl oracle_u03-01 oracle_u03  ENABLED  ACTIVE   20482560 CONCAT -      RW
      sd oracle01-02  oracle_u03-01 oracle01 20482560 20482560 0     <strong>c2t2d0</strong> ENA
      
      
      v  oracle_u04   -            ENABLED  ACTIVE   20480000 fsgen  -      SELECT
      pl oracle_u04-01 oracle_u04  ENABLED  ACTIVE   20482560 CONCAT -      RW
      sd oracle01-03  oracle_u04-01 oracle01 40965120 20482560 0     <strong>c2t2d0</strong> ENA
      
      
      v  oracle_u05   -            ENABLED  ACTIVE   30720000 fsgen  -      SELECT
      pl oracle_u05-01 oracle_u05  ENABLED  ACTIVE   30723840 CONCAT -      RW
      sd oracle01-04  oracle_u05-01 oracle01 266273280 30723840 0    <strong>c2t2d0</strong> ENA
      登录后复制

      Make sure the database files are properly laid out to avoid hot spots. Monitor I/O activities using operating system commands such as iostat and sar. Pay attention to disk queue length, disk service time, and I/O throughput. If a device is particularly busy, then consider relocating some of the data files that are on the device. On the Solaris operating system, you can get I/O statistics on controllers and devices with the iostat –dxnC command. However, hot spots tuning is easier said than done. You need to know how the application uses I/O. Furthermore, if the application is immature and new functionalities are constantly being added, the hot spots may be moving targets. DBAs are normally not apprised of new developments and often have to discover them reactively. This is why I/O balancing can be a never ending task. If you can upgrade to Oracle Database 10g, ASM (Automatic Storage Management) can help with I/O balancing.

      By the way, in addition to the systemwide db file sequential read average wait time from the V$SYSTEM_EVENT view, Oracle also provides single-block read statistics for every database file in the V$FILESTAT view. The file-level single-block average wait time can be calculated by dividing the SINGLEBLKRDTIM with the SINGLEBLKRDS, as shown next. (The SINGLEBLKRDTIM is in centiseconds.) You can quickly discover which files have unacceptable average wait times and begin to investigate the mount points or devices and ensure that they are exclusive to the database.

      select a.file#, 
             b.file_name, 
             a.singleblkrds, 
             a.singleblkrdtim, 
             a.singleblkrdtim/a.singleblkrds average_wait
      from   v$filestat a, dba_data_files b 
      where  a.file# = b.file_id   
      and    a.singleblkrds > 0
      order by average_wait;
      
      
      FILE# FILE_NAME                     SINGLEBLKRDS SINGLEBLKRDTIM AVERAGE_WAIT
      ----- ----------------------------- ------------ -------------- ------------ 
        367 /dev/vgEMCp113/rPOM1P_4G_039          5578            427   .076550735
        368 /dev/vgEMCp113/rPOM1P_4G_040          5025            416    .08278607
        369 /dev/vgEMCp113/rPOM1P_4G_041         13793           1313   .095193214
        370 /dev/vgEMCp113/rPOM1P_4G_042          6232            625   .100288832
        371 /dev/vgEMCp113/rPOM1P_4G_043          4663            482   .103366931
        372 /dev/vgEMCp108/rPOM1P_8G_011        164828         102798   .623668309
        373 /dev/vgEMCp108/rPOM1P_8G_012        193071         125573    .65039804
        374 /dev/vgEMCp108/rPOM1P_8G_013        184799         126720   .685717996
        375 /dev/vgEMCp108/rPOM1P_8G_014        175565         125969   .717506337
      登录后复制

      Team LiB Previous Section Next Section
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn

热AI工具

Undresser.AI Undress

Undresser.AI Undress

人工智能驱动的应用程序,用于创建逼真的裸体照片

AI Clothes Remover

AI Clothes Remover

用于从照片中去除衣服的在线人工智能工具。

Undress AI Tool

Undress AI Tool

免费脱衣服图片

Clothoff.io

Clothoff.io

AI脱衣机

AI Hentai Generator

AI Hentai Generator

免费生成ai无尽的。

热门文章

R.E.P.O.能量晶体解释及其做什么(黄色晶体)
2 周前 By 尊渡假赌尊渡假赌尊渡假赌
仓库:如何复兴队友
1 个月前 By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island冒险:如何获得巨型种子
4 周前 By 尊渡假赌尊渡假赌尊渡假赌

热工具

记事本++7.3.1

记事本++7.3.1

好用且免费的代码编辑器

SublimeText3汉化版

SublimeText3汉化版

中文版,非常好用

禅工作室 13.0.1

禅工作室 13.0.1

功能强大的PHP集成开发环境

Dreamweaver CS6

Dreamweaver CS6

视觉化网页开发工具

SublimeText3 Mac版

SublimeText3 Mac版

神级代码编辑软件(SublimeText3)

PHP异步发送邮件:避免长时间等待邮件发送完成。 PHP异步发送邮件:避免长时间等待邮件发送完成。 Sep 19, 2023 am 09:10 AM

PHP异步发送邮件:避免长时间等待邮件发送完成。导言:在Web开发中,发送邮件是常见的功能之一。但是,由于邮件发送需要与服务器进行通信,往往会导致用户在等待邮件发送完成的过程中出现长时间的等待。为了解决这个问题,我们可以使用PHP异步发送邮件的方式来优化用户体验。本文将介绍如何通过具体的代码示例实现PHP异步发送邮件,并避免长时间的等待。一、理解异步发送邮件

事件 ID 4660:已删除对象 [修复] 事件 ID 4660:已删除对象 [修复] Jul 03, 2023 am 08:13 AM

我们的一些读者遇到了事件ID4660。他们通常不确定该怎么做,所以我们在本指南中解释。删除对象时通常会记录事件ID4660,因此我们还将探索一些实用的方法在您的计算机上修复它。什么是事件ID4660?事件ID4660与活动目录中的对象相关,将由以下任一因素触发:对象删除–每当从ActiveDirectory中删除对象时,都会记录事件ID为4660的安全事件。手动更改–当用户或管理员手动更改对象的权限时,可能会生成事件ID4660。更改权限设置、修改访问级别或添加或删除人员或组时,可能会发生这种情

在iPhone锁屏上获取即将到来的日历事件 在iPhone锁屏上获取即将到来的日历事件 Dec 01, 2023 pm 02:21 PM

在运行iOS16或更高版本的iPhone上,您可以直接在锁定屏幕上显示即将到来的日历事件。继续阅读以了解它是如何完成的。由于表盘复杂功能,许多AppleWatch用户习惯于能够看一眼手腕来查看下一个即将到来的日历事件。随着iOS16和锁定屏幕小部件的出现,您可以直接在iPhone上查看相同的日历事件信息,甚至无需解锁设备。日历锁定屏幕小组件有两种风格,允许您跟踪下一个即将发生的事件的时间,或使用更大的小组件来显示事件名称及其时间。若要开始添加小组件,请使用面容ID或触控ID解锁iPhone,长按

总结Linux系统中system()函数的用法 总结Linux系统中system()函数的用法 Feb 23, 2024 pm 06:45 PM

Linux下system()函数的总结在Linux系统中,system()函数是一个非常常用的函数,它可以用于执行命令行命令。本文将对system()函数进行详细的介绍,并提供一些具体的代码示例。一、system()函数的基本用法system()函数的声明如下:intsystem(constchar*command);其中,command参数是一个字符

在JavaScript中,'oninput'事件的用途是什么? 在JavaScript中,'oninput'事件的用途是什么? Aug 26, 2023 pm 03:17 PM

当在输入框中添加值时,就会发生oninput事件。您可以尝试运行以下代码来了解如何在JavaScript中实现oninput事件-示例<!DOCTYPEhtml><html>  <body>   <p>Writebelow:</p>   <inputtype="text&quot

如何在PHP项目中实现日历功能和事件提醒? 如何在PHP项目中实现日历功能和事件提醒? Nov 02, 2023 pm 12:48 PM

如何在PHP项目中实现日历功能和事件提醒?在开发Web应用程序时,日历功能和事件提醒是常见的需求之一。无论是个人日程管理、团队协作,还是在线活动安排,日历功能都可以提供便捷的时间管理和事务安排。在PHP项目中实现日历功能和事件提醒可以通过以下步骤来完成。数据库设计首先,需要设计数据库表来存储日历事件的相关信息。一个简单的设计可以包含以下字段:id:事件的唯一

jQuery中如何实现select元素的改变事件绑定 jQuery中如何实现select元素的改变事件绑定 Feb 23, 2024 pm 01:12 PM

jQuery是一个流行的JavaScript库,可以用来简化DOM操作、事件处理、动画效果等。在web开发中,经常会遇到需要对select元素进行改变事件绑定的情况。本文将介绍如何使用jQuery实现对select元素改变事件的绑定,并提供具体的代码示例。首先,我们需要使用标签来创建一个包含选项的下拉菜单:

jquery中常用的事件有哪些 jquery中常用的事件有哪些 Jan 03, 2023 pm 06:13 PM

jquery中常用的事件有:1、window事件;2、鼠标事件,是当用户在文档上面移动或单击鼠标时而产生的事件,包括鼠标单击、移入事件、移出事件等;3、键盘事件,是用户每次按下或者释放键盘上的按键时都会产生事件,包括按下按键事件、释放按键按键等;4、表单事件,例如当元素获得焦点时会触发focus()事件,失去焦点时会触发blur()事件,表单提交时会触发submit()事件。

See all articles