<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
 <title>FYI Center for Database Administrator</title>
 <subtitle>FYI (For Your Information) Center for Database Administrators with large collection of FAQs, tutorials and tips for on Oracle, SQL Server, MySQL, and other database servers -  dev.fyicenter.com.</subtitle>
 <link rel="self" href="http://dba.fyicenter.com/atom_xml.php"/>
 <id>http://dba.fyicenter.com/atom_xml.php</id>
 <updated>2026-03-10T20:43:39+01:00</updated>
 <author>
  <name>FYIcenter.com</name>
 </author>
 <rights>Copyright (c) 2026 FYIcenter.com</rights>
 <category term="Database"/>
 <category term="SQL"/>
 <category term="Tutorial"/> <entry>
  <title>Differences of DECIMAL and FLOAT in SQL Server</title>
  <link rel="alternate" href="http://dba.fyicenter.com/1000816_Differences_of_DECIMAL_and_FLOAT_in_SQL_Server.html"/>
  <id>http://dba.fyicenter.com/1000816_Differences_of_DECIMAL_and_FLOAT_in_SQL_Server.html</id>
  <updated>2026-02-12T06:50:10+01:00</updated>
  <summary type="html">&lt;img align='left' width='64' height='64' src='http://dba.fyicenter.com/Transact-SQL/_icon_Transact-SQL.png' />What Are the Differences between DECIMAL and FLOAT in SQL Server Transact-SQL? DECIMAL and FLOAT are both used to store numerical values. But they have the following main differences: DECIMAL(p,s) stores values with the decimal point fixed at the position of s (scale) digits from the right. The tota...  - Rank: 2967; Updated: 2026-02-12 06:49:54 -> &lt;a href='http://dba.fyicenter.com/1000816_Differences_of_DECIMAL_and_FLOAT_in_SQL_Server.html'>Source&lt;/a></summary>
  <author>
   <name>FYIcenter.com</name>
  </author>
  <category term="SQLServer"/>
 </entry> <entry>
  <title>IS_IPV4() - Detecting IPv4 Address</title>
  <link rel="alternate" href="http://dba.fyicenter.com/1001431_IS_IPV4_-Detecting_IPv4_Address.html"/>
  <id>http://dba.fyicenter.com/1001431_IS_IPV4_-Detecting_IPv4_Address.html</id>
  <updated>2026-02-02T04:57:20+01:00</updated>
  <summary type="html">&lt;img align='left' width='64' height='64' src='http://dba.fyicenter.com/MySQL-Functions/_icon_MySQL.png' />How to detect an IPv4 Address using the IS_IPV4() function? IS_IPV4(ip) is a MySQL built-in function that returns 1 if the given value is a valid IPv4 address, 0 otherwise. For example: SELECT IS_IPV4('10.0.5.9'), IS_IPV4('10.0.5.256'); -- +---------------------+------- ----------------+-- | IS_IPV4...  - Rank: 1431; Updated: 2026-02-02 04:56:49 -> &lt;a href='http://dba.fyicenter.com/1001431_IS_IPV4_-Detecting_IPv4_Address.html'>Source&lt;/a></summary>
  <author>
   <name>FYIcenter.com</name>
  </author>
  <category term="MySQL"/>
 </entry> <entry>
  <title>IS_IPV4_COMPAT() - IPv4-Compatible IPv6 Address</title>
  <link rel="alternate" href="http://dba.fyicenter.com/1001432_IS_IPV4_COMPAT_-IPv4-Compatible_IPv6_Address.html"/>
  <id>http://dba.fyicenter.com/1001432_IS_IPV4_COMPAT_-IPv4-Compatible_IPv6_Address.html</id>
  <updated>2026-02-02T04:57:21+01:00</updated>
  <summary type="html">&lt;img align='left' width='64' height='64' src='http://dba.fyicenter.com/MySQL-Functions/_icon_MySQL.png' />How to detect an IPv6 Address that is IPv4 compatible using the IS_IPV4_COMPAT() function? IS_IPV4_COMPAT(ip) is a MySQL built-in function that returns 1 if the given IPv6 address is IPv4-compatible, 0 otherwise. The IPv6 address must be given in number format. An IPv4-compatible IPv6 address has 12...  - Rank: 1231; Updated: 2026-02-02 04:56:49 -> &lt;a href='http://dba.fyicenter.com/1001432_IS_IPV4_COMPAT_-IPv4-Compatible_IPv6_Address.html'>Source&lt;/a></summary>
  <author>
   <name>FYIcenter.com</name>
  </author>
  <category term="MySQL"/>
 </entry> <entry>
  <title>INET6_NTOA() - IPv6 Address Number to String</title>
  <link rel="alternate" href="http://dba.fyicenter.com/1001430_INET6_NTOA_-IPv6_Address_Number_to_String.html"/>
  <id>http://dba.fyicenter.com/1001430_INET6_NTOA_-IPv6_Address_Number_to_String.html</id>
  <updated>2026-02-02T04:57:19+01:00</updated>
  <summary type="html">&lt;img align='left' width='64' height='64' src='http://dba.fyicenter.com/MySQL-Functions/_icon_MySQL.png' />How to convert an IPv6 address from number format to string using the INET6_NTOA() function? INET6_NTOA(int) is a MySQL built-in function that converts an IPv6 address from number format to string. For example: SET @ipv6 = UNHEX('FDFE0000000000005A55CAF FFEFA9089');SELECT HEX(@ipv6), INET6_NTOA(@ipv...  - Rank: 1183; Updated: 2026-02-02 04:56:49 -> &lt;a href='http://dba.fyicenter.com/1001430_INET6_NTOA_-IPv6_Address_Number_to_String.html'>Source&lt;/a></summary>
  <author>
   <name>FYIcenter.com</name>
  </author>
  <category term="MySQL"/>
 </entry> <entry>
  <title>IS_IPV6() - Detecting IPv6 Address</title>
  <link rel="alternate" href="http://dba.fyicenter.com/1001434_IS_IPV6_-Detecting_IPv6_Address.html"/>
  <id>http://dba.fyicenter.com/1001434_IS_IPV6_-Detecting_IPv6_Address.html</id>
  <updated>2026-01-24T02:45:24+01:00</updated>
  <summary type="html">&lt;img align='left' width='64' height='64' src='http://dba.fyicenter.com/MySQL-Functions/_icon_MySQL.png' />How to detect an IPv4 Address using the IS_IPV6() function? IS_IPV6(ip) is a MySQL built-in function that returns 1 if the given value is a valid IPv6 address, 0 otherwise. For example: SELECT IS_IPV4('10.0.5.9'), IS_IPV4('10.0.5.256'); -- +---------------------+------- ----------------+-- | IS_IPV4...  - Rank: 1599; Updated: 2026-01-24 02:44:50 -> &lt;a href='http://dba.fyicenter.com/1001434_IS_IPV6_-Detecting_IPv6_Address.html'>Source&lt;/a></summary>
  <author>
   <name>FYIcenter.com</name>
  </author>
  <category term="MySQL"/>
 </entry> <entry>
  <title>UPDATEXML() - Updating Child Element in XML</title>
  <link rel="alternate" href="http://dba.fyicenter.com/1001438_UPDATEXML_-Updating_Child_Element_in_XML.html"/>
  <id>http://dba.fyicenter.com/1001438_UPDATEXML_-Updating_Child_Element_in_XML.html</id>
  <updated>2026-01-24T02:45:28+01:00</updated>
  <summary type="html">&lt;img align='left' width='64' height='64' src='http://dba.fyicenter.com/MySQL-Functions/_icon_MySQL.png' />How to update a child element in an XML document at a given location using the UPDATEXML() function? UPDATEXML(xml, path, subxml) is a MySQL built-in function that updates a child element in an XML document at a given location. For example: SET @xml = ' X Y '; SELECT UPDATEXML(@xml, '/a', ' Z '); +-...  - Rank: 1173; Updated: 2026-01-24 02:44:50 -> &lt;a href='http://dba.fyicenter.com/1001438_UPDATEXML_-Updating_Child_Element_in_XML.html'>Source&lt;/a></summary>
  <author>
   <name>FYIcenter.com</name>
  </author>
  <category term="MySQL"/>
 </entry> <entry>
  <title>CHARSET() - Detecting Character Set Name</title>
  <link rel="alternate" href="http://dba.fyicenter.com/1001440_CHARSET_-Detecting_Character_Set_Name.html"/>
  <id>http://dba.fyicenter.com/1001440_CHARSET_-Detecting_Character_Set_Name.html</id>
  <updated>2025-10-24T14:58:23+02:00</updated>
  <summary type="html">&lt;img align='left' width='64' height='64' src='http://dba.fyicenter.com/MySQL-Functions/_icon_MySQL.png' />How to detect the character set name associated to a given character string using the CHARSET() function? CHARSET(str) is a MySQL built-in function that returns the character set name associated to a given character string. A character set name refers to a set of rules to encode a set of characters ...  - Rank: 1687; Updated: 2025-10-24 14:57:43 -> &lt;a href='http://dba.fyicenter.com/1001440_CHARSET_-Detecting_Character_Set_Name.html'>Source&lt;/a></summary>
  <author>
   <name>FYIcenter.com</name>
  </author>
  <category term="MySQL"/>
 </entry> <entry>
  <title>VALUES() - Column Value for "ON DUPLICATE KEY UPDATE"</title>
  <link rel="alternate" href="http://dba.fyicenter.com/1001439_VALUES_-Column_Value_for_ON_DUPLICATE_KEY_UPDATE_.html"/>
  <id>http://dba.fyicenter.com/1001439_VALUES_-Column_Value_for_ON_DUPLICATE_KEY_UPDATE_.html</id>
  <updated>2025-10-24T14:58:22+02:00</updated>
  <summary type="html">&lt;img align='left' width='64' height='64' src='http://dba.fyicenter.com/MySQL-Functions/_icon_MySQL.png' />How to obtain the inserting value of given column in the "ON DUPLICATE KEY UPDATE" clause using the VALUES() function? VALUES(col) is a MySQL built-in function that returns the inserting value of a given column and use it in the "ON DUPLICATE KEY UPDATE" clause. For example: CREATE TABLE MyTable (id...  - Rank: 1167; Updated: 2025-10-24 14:57:43 -> &lt;a href='http://dba.fyicenter.com/1001439_VALUES_-Column_Value_for_ON_DUPLICATE_KEY_UPDATE_.html'>Source&lt;/a></summary>
  <author>
   <name>FYIcenter.com</name>
  </author>
  <category term="MySQL"/>
 </entry> <entry>
  <title>COERCIBILITY() - Character Collation Coercibility</title>
  <link rel="alternate" href="http://dba.fyicenter.com/1001441_COERCIBILITY_-Character_Collation_Coercibility.html"/>
  <id>http://dba.fyicenter.com/1001441_COERCIBILITY_-Character_Collation_Coercibility.html</id>
  <updated>2025-10-14T10:52:13+02:00</updated>
  <summary type="html">&lt;img align='left' width='64' height='64' src='http://dba.fyicenter.com/MySQL-Functions/_icon_MySQL.png' />How to detect the collation coercibility associated to a given character string using the COERCIBILITY() function? COERCIBILITY(str) is a MySQL built-in function that returns the collation coercibility associated to a given character string. A collation coercibility refers to the coercibility index,...  - Rank: 1755; Updated: 2025-10-14 10:51:32 -> &lt;a href='http://dba.fyicenter.com/1001441_COERCIBILITY_-Character_Collation_Coercibility.html'>Source&lt;/a></summary>
  <author>
   <name>FYIcenter.com</name>
  </author>
  <category term="MySQL"/>
 </entry> <entry>
  <title>COLLATION() - Detecting Character Collation Name</title>
  <link rel="alternate" href="http://dba.fyicenter.com/1001442_COLLATION_-Detecting_Character_Collation_Name.html"/>
  <id>http://dba.fyicenter.com/1001442_COLLATION_-Detecting_Character_Collation_Name.html</id>
  <updated>2025-10-14T10:52:14+02:00</updated>
  <summary type="html">&lt;img align='left' width='64' height='64' src='http://dba.fyicenter.com/MySQL-Functions/_icon_MySQL.png' />How to detect the character collation name associated to a given character string using the COLLATION() function? COLLATION(str) is a MySQL built-in function that returns the character collation name associated to a given character string. A character collation name refers to a set of rules to sort ...  - Rank: 1466; Updated: 2025-10-14 10:51:32 -> &lt;a href='http://dba.fyicenter.com/1001442_COLLATION_-Detecting_Character_Collation_Name.html'>Source&lt;/a></summary>
  <author>
   <name>FYIcenter.com</name>
  </author>
  <category term="MySQL"/>
 </entry> <entry>
  <title>What Is Transport Network Substrate in Oracle</title>
  <link rel="alternate" href="http://dba.fyicenter.com/1000058_What_Is_Transport_Network_Substrate_in_Oracle.html"/>
  <id>http://dba.fyicenter.com/1000058_What_Is_Transport_Network_Substrate_in_Oracle.html</id>
  <updated>2025-09-30T09:35:08+02:00</updated>
  <summary type="html">&lt;img align='left' width='64' height='64' src='http://dba.fyicenter.com/Oracle/_icon_Oracle.png' />What Is Transport Network Substrate (TNS) in Oracle? TNS, Transport Network Substrate, is a foundation technology, built into the Oracle Net foundation layer that works with any standard network transport protocol.   ⇒ What Is ODBC in Oracle ⇐ What Is SQL*Plus in Oracle ⇑ Oracle Database Basic Conc...  - Rank: 3291; Updated: 2025-09-30 09:34:10 -> &lt;a href='http://dba.fyicenter.com/1000058_What_Is_Transport_Network_Substrate_in_Oracle.html'>Source&lt;/a></summary>
  <author>
   <name>FYIcenter.com</name>
  </author>
  <category term="Oracle"/>
 </entry> <entry>
  <title>FORMAT_BYTES() - Formatting Bytes in Readable Units</title>
  <link rel="alternate" href="http://dba.fyicenter.com/1001443_FORMAT_BYTES_-Formatting_Bytes_in_Readable_Units.html"/>
  <id>http://dba.fyicenter.com/1001443_FORMAT_BYTES_-Formatting_Bytes_in_Readable_Units.html</id>
  <updated>2025-09-24T06:55:14+02:00</updated>
  <summary type="html">&lt;img align='left' width='64' height='64' src='http://dba.fyicenter.com/MySQL-Functions/_icon_MySQL.png' />How to format a number of bytes in a human-readable unit using the FORMAT_BYTES() function? FORMAT_BYTES(con) is a MySQL built-in function that converts a number of bytes in a human-readable unit of KiB, MiG, GiB, TiB, PiB or EiB. For example: SELECT FORMAT_BYTES(9), FORMAT_BYTES(9*1024), FORMAT_BYT...  - Rank: 1452; Updated: 2025-09-24 06:54:31 -> &lt;a href='http://dba.fyicenter.com/1001443_FORMAT_BYTES_-Formatting_Bytes_in_Readable_Units.html'>Source&lt;/a></summary>
  <author>
   <name>FYIcenter.com</name>
  </author>
  <category term="MySQL"/>
 </entry> <entry>
  <title>FORMAT_PICO_TIME() - Formatting Picoseconds in Readable Units</title>
  <link rel="alternate" href="http://dba.fyicenter.com/1001444_FORMAT_PICO_TIME_-Formatting_Picoseconds_in_Readable_Units.html"/>
  <id>http://dba.fyicenter.com/1001444_FORMAT_PICO_TIME_-Formatting_Picoseconds_in_Readable_Units.html</id>
  <updated>2025-09-24T06:55:15+02:00</updated>
  <summary type="html">&lt;img align='left' width='64' height='64' src='http://dba.fyicenter.com/MySQL-Functions/_icon_MySQL.png' />How to format a number of picoseconds in a human-readable unit using the FORMAT_PICO_TIME() function? FORMAT_PICO_TIME(con) is a MySQL built-in function that converts a number of picoseconds in a human-readable unit of ps, ns, ms, s, min, h, or d. For example: SELECT FORMAT_PICO_TIME(9), FORMAT_PICO...  - Rank: 1329; Updated: 2025-09-24 06:54:31 -> &lt;a href='http://dba.fyicenter.com/1001444_FORMAT_PICO_TIME_-Formatting_Picoseconds_in_Readable_Units.html'>Source&lt;/a></summary>
  <author>
   <name>FYIcenter.com</name>
  </author>
  <category term="MySQL"/>
 </entry> <entry>
  <title>Oracle Database Basic Concepts</title>
  <link rel="alternate" href="http://dba.fyicenter.com/1000037_Oracle_Database_Basic_Concepts.html"/>
  <id>http://dba.fyicenter.com/1000037_Oracle_Database_Basic_Concepts.html</id>
  <updated>2025-09-18T16:21:53+02:00</updated>
  <summary type="html">&lt;img align='left' width='64' height='64' src='http://dba.fyicenter.com/Oracle/_icon_Oracle.png' />Where to find answers to frequently asked questions I am new to Oracle database. Here is a list of frequently asked questions and their answers compiled by FYIcenter.com DBA team about Oracle database basic concepts: What Is Oracle in Oracle What Is an Oracle Database in Oracle What Is an Oracle Ins...  - Rank: 6272; Updated: 2025-09-18 16:21:16 -> &lt;a href='http://dba.fyicenter.com/1000037_Oracle_Database_Basic_Concepts.html'>Source&lt;/a></summary>
  <author>
   <name>FYIcenter.com</name>
  </author>
  <category term="Oracle"/>
 </entry> <entry>
  <title>DATABASE() - Name of Current Database</title>
  <link rel="alternate" href="http://dba.fyicenter.com/1001451_DATABASE_-Name_of_Current_Database.html"/>
  <id>http://dba.fyicenter.com/1001451_DATABASE_-Name_of_Current_Database.html</id>
  <updated>2025-06-18T11:07:24+02:00</updated>
  <summary type="html">&lt;img align='left' width='64' height='64' src='http://dba.fyicenter.com/MySQL-Functions/_icon_MySQL.png' />How to obtain the name of the current database using the DATABASE() function? DATABASE() is a MySQL built-in function that returns the name of the current database. For example: USE mysql; Database changed SELECT DATABASE(); -- +------------+ -- | DATABASE() | -- +------------+ -- | mysql | -- +----...  - Rank: 2357; Updated: 2025-06-18 11:06:33 -> &lt;a href='http://dba.fyicenter.com/1001451_DATABASE_-Name_of_Current_Database.html'>Source&lt;/a></summary>
  <author>
   <name>FYIcenter.com</name>
  </author>
  <category term="MySQL"/>
 </entry> <entry>
  <title>CURRENT_USER() - Authentication Name of Current User</title>
  <link rel="alternate" href="http://dba.fyicenter.com/1001450_CURRENT_USER_-Authentication_Name_of_Current_User.html"/>
  <id>http://dba.fyicenter.com/1001450_CURRENT_USER_-Authentication_Name_of_Current_User.html</id>
  <updated>2025-06-18T11:07:23+02:00</updated>
  <summary type="html">&lt;img align='left' width='64' height='64' src='http://dba.fyicenter.com/MySQL-Functions/_icon_MySQL.png' />How to obtain the authentication name of the current user using the CURRENT_USER() function? CURRENT_USER() is a MySQL built-in function that returns the authentication name of the current user. The authentication name is a combination of "User" and "Host" columns in the mysql.user table and used to...  - Rank: 2226; Updated: 2025-06-18 11:06:33 -> &lt;a href='http://dba.fyicenter.com/1001450_CURRENT_USER_-Authentication_Name_of_Current_User.html'>Source&lt;/a></summary>
  <author>
   <name>FYIcenter.com</name>
  </author>
  <category term="MySQL"/>
 </entry> <entry>
  <title>FOUND_ROWS() - Row Count from Last SELECT Statement</title>
  <link rel="alternate" href="http://dba.fyicenter.com/1001452_FOUND_ROWS_-Row_Count_from_Last_SELECT_Statement.html"/>
  <id>http://dba.fyicenter.com/1001452_FOUND_ROWS_-Row_Count_from_Last_SELECT_Statement.html</id>
  <updated>2025-04-11T14:43:11+02:00</updated>
  <summary type="html">&lt;img align='left' width='64' height='64' src='http://dba.fyicenter.com/MySQL-Functions/_icon_MySQL.png' />How to obtain the number of rows found by the last SELECT statement using the FOUND_ROWS() function? FOUND_ROWS() is a MySQL built-in function that returns the number of rows found by the last SELECT statement. For example: SELECT help_topic_id, name FROM mysql.help_topic; -- +---------------+------...  - Rank: 5323; Updated: 2025-04-11 14:42:19 -> &lt;a href='http://dba.fyicenter.com/1001452_FOUND_ROWS_-Row_Count_from_Last_SELECT_Statement.html'>Source&lt;/a></summary>
  <author>
   <name>FYIcenter.com</name>
  </author>
  <category term="MySQL"/>
 </entry> <entry>
  <title>LAST_INSERT_ID() - Last Value of AUTO_INCREMENT Column</title>
  <link rel="alternate" href="http://dba.fyicenter.com/1001454_LAST_INSERT_ID_-Last_Value_of_AUTO_INCREMENT_Column.html"/>
  <id>http://dba.fyicenter.com/1001454_LAST_INSERT_ID_-Last_Value_of_AUTO_INCREMENT_Column.html</id>
  <updated>2025-04-11T14:43:13+02:00</updated>
  <summary type="html">&lt;img align='left' width='64' height='64' src='http://dba.fyicenter.com/MySQL-Functions/_icon_MySQL.png' />How to obtain the last inserted value of an AUTO_INCREMENT column using the LAST_INSERT_ID() function? LAST_INSERT_ID() is a MySQL built-in function that returns the last inserted value of an AUTO_INCREMENT column. For example: CREATE TABLE MyTable (id INTEGER AUTO_INCREMENT, comment CHAR(80), PRIMA...  - Rank: 2743; Updated: 2025-04-11 14:42:19 -> &lt;a href='http://dba.fyicenter.com/1001454_LAST_INSERT_ID_-Last_Value_of_AUTO_INCREMENT_Column.html'>Source&lt;/a></summary>
  <author>
   <name>FYIcenter.com</name>
  </author>
  <category term="MySQL"/>
 </entry> <entry>
  <title>ICU_VERSION() - ICU (International Components for Unicode) Version</title>
  <link rel="alternate" href="http://dba.fyicenter.com/1001453_ICU_VERSION_-ICU_International_Components_for_Unicode_Version.html"/>
  <id>http://dba.fyicenter.com/1001453_ICU_VERSION_-ICU_International_Components_for_Unicode_Version.html</id>
  <updated>2025-04-11T14:43:12+02:00</updated>
  <summary type="html">&lt;img align='left' width='64' height='64' src='http://dba.fyicenter.com/MySQL-Functions/_icon_MySQL.png' />How to obtain the version number of the ICU (International Components for Unicode) library using the ICU_VERSION() function? ICU_VERSION() is a MySQL built-in function that returns the version number of the ICU (International Components for Unicode) library. For example: SELECT ICU_VERSION(); -- +--...  - Rank: 2594; Updated: 2025-04-11 14:42:19 -> &lt;a href='http://dba.fyicenter.com/1001453_ICU_VERSION_-ICU_International_Components_for_Unicode_Version.html'>Source&lt;/a></summary>
  <author>
   <name>FYIcenter.com</name>
  </author>
  <category term="MySQL"/>
 </entry> <entry>
  <title>dba.FYIcenter.com Links</title>
  <link rel="alternate" href="http://dba.fyicenter.com/1001193_dba_FYIcenter_com_Links.html"/>
  <id>http://dba.fyicenter.com/1001193_dba_FYIcenter_com_Links.html</id>
  <updated>2025-03-17T01:31:00+01:00</updated>
  <summary type="html">&lt;img align='left' width='64' height='64' src='http://dba.fyicenter.com/z/_icon_General.png' />Collections: Interview Questions MySQL Tutorials MySQL Functions Oracle Tutorials SQL Server Tutorials Transact-SQL Tutorials DBA Articles Site Map Other Resources: SQA (Software QA) Developer Resources DBA Resources Windows Tutorials Java JAR Files DLL Files File Extensions Security Certificates Re...  - Rank: 6434; Updated: 2025-03-17 01:29:27 -> &lt;a href='http://dba.fyicenter.com/1001193_dba_FYIcenter_com_Links.html'>Source&lt;/a></summary>
  <author>
   <name></name>
  </author>
  <category term="General"/>
 </entry> <entry>
  <title>JSON_STORAGE_SIZE() - Storage Size of JSON Value</title>
  <link rel="alternate" href="http://dba.fyicenter.com/1001387_JSON_STORAGE_SIZE_-Storage_Size_of_JSON_Value.html"/>
  <id>http://dba.fyicenter.com/1001387_JSON_STORAGE_SIZE_-Storage_Size_of_JSON_Value.html</id>
  <updated>2025-03-12T02:53:31+01:00</updated>
  <summary type="html">&lt;img align='left' width='64' height='64' src='http://dba.fyicenter.com/MySQL-Functions/_icon_MySQL.png' />How to calculate the storage size of a JSON (JavaScript Object Notation) value using the JSON_STORAGE_SIZE() function? JSON_STORAGE_SIZE(json) is a MySQL built-in function that calculates the storage size of a JSON (JavaScript Object Notation) value or table column. For example: SELECT JSON_STORAGE_...  - Rank: 35163; Updated: 2025-03-12 02:52:04 -> &lt;a href='http://dba.fyicenter.com/1001387_JSON_STORAGE_SIZE_-Storage_Size_of_JSON_Value.html'>Source&lt;/a></summary>
  <author>
   <name>FYIcenter.com</name>
  </author>
  <category term="MySQL"/>
 </entry> <entry>
  <title>JSON_UNQUOTE() - Unquoting JSON String</title>
  <link rel="alternate" href="http://dba.fyicenter.com/1001389_JSON_UNQUOTE_-Unquoting_JSON_String.html"/>
  <id>http://dba.fyicenter.com/1001389_JSON_UNQUOTE_-Unquoting_JSON_String.html</id>
  <updated>2025-03-12T02:53:33+01:00</updated>
  <summary type="html">&lt;img align='left' width='64' height='64' src='http://dba.fyicenter.com/MySQL-Functions/_icon_MySQL.png' />How to convert a JSON (JavaScript Object Notation) quoted string into a regular character string using the JSON_UNQUOTE() function? JSON_UNQUOTE(json) is a MySQL built-in function that converts a JSON string into a regular character string, by removing the enclosing double-quotes and restoring any e...  - Rank: 3242; Updated: 2025-03-12 02:52:04 -> &lt;a href='http://dba.fyicenter.com/1001389_JSON_UNQUOTE_-Unquoting_JSON_String.html'>Source&lt;/a></summary>
  <author>
   <name>FYIcenter.com</name>
  </author>
  <category term="MySQL"/>
 </entry> <entry>
  <title>JSON_SET() - Inserting/updating JSON Child Members</title>
  <link rel="alternate" href="http://dba.fyicenter.com/1001386_JSON_SET_-Inserting_updating_JSON_Child_Members.html"/>
  <id>http://dba.fyicenter.com/1001386_JSON_SET_-Inserting_updating_JSON_Child_Members.html</id>
  <updated>2025-03-12T02:53:30+01:00</updated>
  <summary type="html">&lt;img align='left' width='64' height='64' src='http://dba.fyicenter.com/MySQL-Functions/_icon_MySQL.png' />How to insert or update child members of a JSON (JavaScript Object Notation) value using the JSON_SET() function? JSON_SET(json, path1, val1, path2, val2, ...) is a MySQL built-in function that inserts child members of a JSON value at given new locations, and replaces child numbers at given existing...  - Rank: 3146; Updated: 2025-03-12 02:52:04 -> &lt;a href='http://dba.fyicenter.com/1001386_JSON_SET_-Inserting_updating_JSON_Child_Members.html'>Source&lt;/a></summary>
  <author>
   <name>FYIcenter.com</name>
  </author>
  <category term="MySQL"/>
 </entry> <entry>
  <title>MySQL Functions for Encryption and Compression</title>
  <link rel="alternate" href="http://dba.fyicenter.com/1001391_MySQL_Functions_for_Encryption_and_Compression.html"/>
  <id>http://dba.fyicenter.com/1001391_MySQL_Functions_for_Encryption_and_Compression.html</id>
  <updated>2025-03-12T02:53:35+01:00</updated>
  <summary type="html">&lt;img align='left' width='64' height='64' src='http://dba.fyicenter.com/MySQL-Functions/_icon_MySQL.png' />Where to find reference information and tutorials on MySQL database functions for Encryption and Compression? I want to know how to use COMPRESS(), ENCRYPT() and other related functions. Here is a collection of reference information and tutorials on MySQL database functions for Encryption and Compre...  - Rank: 2957; Updated: 2025-03-12 02:52:04 -> &lt;a href='http://dba.fyicenter.com/1001391_MySQL_Functions_for_Encryption_and_Compression.html'>Source&lt;/a></summary>
  <author>
   <name>FYIcenter.com</name>
  </author>
  <category term="MySQL"/>
 </entry></feed>