- Summary
- Based on your session log and query pattern, here is the 8 executed queries that caused the customer's authentication date to update.
Queries are sorted by their frequency of use (in number of rows), from most frequent to least.
### 1. Improved banner content (UPDATE Banner)
* Query: `UPDATE yd3yx_banners SET impmade = 1`
* Occurrences: 1
* Context: Change the value of `impmade` from 0 to 1, which indicates that the banner was updated with a positive value.
* Occurrences: 1
### 2. Updating session data (UPDATE Session)
* Query: `UPDATE yd3yx_session SET ... i:1; s:19:session.timer.start...`
* Context: Tests the new session start timestamp (`time.start`) and the current time (`timer.now`) based on a value of 0 and 0, but with a timestamp of 1776848336 which is already in the past (`time.start`).
* Occurrences: 1
* Occurrences: 1
### 3. UPDATE Session Token
* Query: `UPDATE yd3yx_session SET session.token = 6ff635f7fa8269c35a6c56aa1f293958`
* Occurrences: 1
* Context: Updates the token saved in the database.
* Occurrences: 1
### 4. Aggregate query on Comments (AGGREGATE - Comments)
* Query: `SELECT COUNT(*) FROM yd3yx_k2_comments`
* Occurrences: 1
* Context: Counts many comments.
* Occurrences: 1
### 5. Update menu levels (UPDATE Menu)
* Query: `SELECT m.published, m.id, m.title, m.module, m.position, m.content, m.showtitle, m.params, mm.menuid FROM yd3yx_modules AS m LEFT JOIN yd3yx_modules_menu AS mm ON mm.moduleid m.id LEFT JOIN yd3yx_extensions AS e ON e.element m.module AND e.client_id m.client_id`
* Occurrences: 1
* Context: Let the complete query pass into memory.
* Occurrences: 1
### 6. Updating menu levels (UPDATE Menu - second attempt)
* Query: `SELECT m.published, m.id, m.title, m.module, m.position, m.content, m.showtitle, m.params, mm.menuid FROM yd3yx_modules AS m LEFT JOIN yd3yx_modules_menu AS mm ON mm.moduleid m.id LEFT JOIN yd3yx_extensions AS e ON e.element m.module AND e.client_id m.client_id`
* Note: Since the same query (with the word change "menuid" instead of "menuid", which is a common bug) was executed 2 times (once first, now the secondary), the log records 2 lines.
* Occurrences: 2
* Occurrences: 2
### 7. Aggregate query on Assets (AGGREGATE - Assets)
* Query: `SELECT COUNT(*) FROM yd3yx_assets`
* Occurrences: 1
* Context: Counts all assets in the database.
* Occurrences: 1
### 8. Aggregate query on Session (AGGREGATE - Session)
* Query: `SELECT ... session_id ... FROM yd3yx_session`
* Occurrences: 1
* Context: Updates the `session_id` field.
* Occurrences: 1
---
### Summary of queries executed:
In total, 8 SQL queries were executed.
1. 1 x UPDATE (Banner)
2. 1 x UPDATE (Session - Start)
3. 1 x UPDATE (Session - Token)
4. 1 x SELECT COUNT (Comments - Total)
5. 1 x SELECT (Menu) *(Analysis query, not editing)*
6. 2 x SELECT (Menu) *(Analysis query, second time)*
7. 1 x SELECT (Assets)
8. 1 x SELECT (Session - id)
Important Note: The two "UPDATE Menu" queries are logged as a set of 2 because the same query was called twice in the log. - Title
- Home
- Description
- CIA Umbria - Italian Confederation of Farmers in the Umbria region - Territorial Area of Upper Umbria - Territorial Area of Perugino - Territorial Area of Middle Umbria - Territorial Area of Ternano
- Keywords
- update, application, seconds, join, left, umbria, acid, order, reset, name, type, limit
- NS Lookup
- A 46.252.152.237
- Dates
-
Created 2026-04-12Updated 2026-04-22Summarized 2026-04-24
Query time: 4708 ms