From cacadc07ce26476a2e543ce4699efaa45bdea075 Mon Sep 17 00:00:00 2001 From: Konstantin Date: Sun, 14 Feb 2016 15:52:04 +0300 Subject: [PATCH 01/10] Create Eamples.md file --- Example.md | 107 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 107 insertions(+) create mode 100644 Example.md diff --git a/Example.md b/Example.md new file mode 100644 index 0000000..9cb57e9 --- /dev/null +++ b/Example.md @@ -0,0 +1,107 @@ +# Example Statistics IO Output + +## Input statement + +SQL Server parse and compile time:
+ CPU time = 108 ms, elapsed time = 108 ms. + +(13431682 row(s) affected)
+Table 'PostTypes'. Scan count 1, logical reads 2, physical reads 1, read-ahead reads 0, lob logical reads 0, lob physical reads 0, lob read-ahead reads 0.
+Table 'Users'. Scan count 5, logical reads 42015, physical reads 1, read-ahead reads 41306, lob logical reads 0, lob physical reads 0, lob read-ahead reads 0.
+Table 'Comments'. Scan count 5, logical reads 1089402, physical reads 248, read-ahead reads 1108174, lob logical reads 0, lob physical reads 0, lob read-ahead reads 0.
+Table 'PostTags'. Scan count 5, logical reads 77500, physical reads 348, read-ahead reads 82219, lob logical reads 0, lob physical reads 0, lob read-ahead reads 0.
+Table 'Posts'. Scan count 5, logical reads 397944, physical reads 9338, read-ahead reads 402977, lob logical reads 0, lob physical reads 0, lob read-ahead reads 0.
+Table 'Worktable'. Scan count 999172, logical reads 16247024, physical reads 0, read-ahead reads 0, lob logical reads 0, lob physical reads 0, lob read-ahead reads 0.
+Table 'Worktable'. Scan count 0, logical reads 0, physical reads 0, read-ahead reads 0, lob logical reads 0, lob physical reads 0, lob read-ahead reads 0. + + SQL Server Execution Times:
+ CPU time = 156527 ms, elapsed time = 284906 ms.
+SQL Server parse and compile time:
+ CPU time = 16 ms, elapsed time = 19 ms.
+ +(233033 row(s) affected)
+Table 'Worktable'. Scan count 0, logical reads 0, physical reads 0, read-ahead reads 0, lob logical reads 0, lob physical reads 0, lob read-ahead reads 0.
+Table 'Votes'. Scan count 1, logical reads 250128, physical reads 10, read-ahead reads 250104, lob logical reads 0, lob physical reads 0, lob read-ahead reads 0.
+Table 'Posts'. Scan count 1, logical reads 165586, physical reads 18, read-ahead reads 49191, lob logical reads 823463, lob physical reads 42854, lob read-ahead reads 3272.
+Table 'Users'. Scan count 1, logical reads 41405, physical reads 3, read-ahead reads 41401, lob logical reads 0, lob physical reads 0, lob read-ahead reads 0. + + SQL Server Execution Times:
+ CPU time = 17207 ms, elapsed time = 38163 ms.
+Msg 207, Level 16, State 1, Line 1
+Invalid column name 'scores'.
+SQL Server parse and compile time:
+ CPU time = 0 ms, elapsed time = 0 ms. + + SQL Server Execution Times:
+ CPU time = 0 ms, elapsed time = 0 ms. + +## Output Statement + +| | CPU | Elapsed | +|------------------------------------|--------------|--------------| +| SQL Server parse and compile time: | 00:00:00.108 | 00:00:00.108 | + +**13,431,682 rows affected** + +| Row Num | Table | Scan Count | Logical Reads | Physical Reads | Read-Ahead Reads | LOB Logical Reads | LOB Physical Reads | LOB Read-Ahead Reads | % Logical Reads of Total Reads | +|---------|-----------|-----------:|--------------:|---------------:|-----------------:|------------------:|-------------------:|----------------------|-------------------------------:| +| | Total | 999,193 | 17,853,887 | 9,936 | 1,634,676 | 0 | 0 | 0 | | +| | PostTypes | 1 | 2 | 1 | 0 | 0 | 0 | 0 | 0.000 | +| | Users | 5 | 42,015 | 1 | 41,306 | 0 | 0 | 0 | 0.235 | +| | Comments | 5 | 1,089,402 | 248 | 1,108,174 | 0 | 0 | 0 | 6.102 | +| | PostTags | 5 | 77,500 | 348 | 82,219 | 0 | 0 | 0 | 0.434 | +| | Posts | 5 | 397,944 | 9,338 | 402,977 | 0 | 0 | 0 | 2.229 | +| | Worktable | 999,172 | 16,247,024 | 0 | 0 | 0 | 0 | 0 | 91.000 | +| | Worktable | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0.000 | + +| | CPU | Elapsed | +|-----------------------------|--------------|--------------| +| SQL Server Execution Times: | 00:02:36.527 | 00:04:44.906 | + +| | CPU | Elapsed | +|------------------------------------|--------------|--------------| +| SQL Server parse and compile time: | 00:00:00.016 | 00:00:00.019 | + +**233,033 rows affected** + +| Row Num | Table | Scan Count | Logical Reads | Physical Reads | Read-Ahead Reads | LOB Logical Reads | LOB Physical Reads | LOB Read-Ahead Reads | % Logical Reads of Total Reads | +|---------|----------:|-----------:|--------------:|---------------:|-----------------:|------------------:|-------------------:|---------------------:|-------------------------------:| +| | Total | 3 | 457,119 | 31 | 340,696 | 823,463 | 42,854 | 3,272 | | +| | Worktable | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0.000 | +| | Votes | 1 | 250,128 | 10 | 250,104 | 0 | 0 | 0 | 54.718 | +| | Posts | 1 | 165,586 | 18 | 49,191 | 823,463 | 42,854 | 3,272 | 36.224 | +| | Users | 1 | 41,405 | 3 | 41,401 | 0 | 0 | 0 | 9.058 | + +| | CPU | Elapsed | +|-----------------------------|--------------|--------------| +| SQL Server Execution Times: | 00:00:17.207 | 00:00:38.163 | + +**Msg 207, Level 16, State 1, Line 1
+Invalid column name 'scores'.** + +| | CPU | Elapsed | +|------------------------------------|--------------|--------------| +| SQL Server parse and compile time: | 00:00:00.000 | 00:00:00.000 | + +| | CPU | Elapsed | +|-----------------------------|--------------|--------------| +| SQL Server Execution Times: | 00:00:00.000 | 00:00:00.000 | + +#### Totals: + +| Table | Scan Count | Logical Reads | Physical Reads | Read-Ahead Reads | LOB Logical Reads | LOB Physical Reads | LOB Read-Ahead Reads | % Logical Reads of Total Reads | +|-----------|-----------:|--------------:|---------------:|-----------------:|------------------:|-------------------:|---------------------:|-------------------------------:| +| Total | 999,196 | 18,311,006 | 9,967 | 1,975,372 | 823,463 | 42,854 | 3,272 | | +| Comments | 5 | 1,089,402 | 248 | 1,108,174 | 0 | 0 | 0 | 5.949 | +| Posts | 6 | 563,530 | 9,356 | 452,168 | 823,463 | 42,854 | 3,272 | 3.078 | +| PostTags | 5 | 77,500 | 348 | 82,219 | 0 | 0 | 0 | 0.423 | +| PostTypes | 1 | 2 | 1 | 0 | 0 | 0 | 0 | 0.000 | +| Users | 6 | 83,420 | 4 | 82,707 | 0 | 0 | 0 | 0.456 | +| Votes | 1 | 250,128 | 10 | 250,104 | 0 | 0 | 0 | 1.366 | +| Worktable | 999,172 | 16,247,024 | 0 | 0 | 0 | 0 | 0 | 88.728 | + +| | CPU | Elapsed | +|------------------------------------|--------------|--------------| +| SQL Server parse and compile time: | 00:00:00.124 | 00:00:00.127 | +| SQL Server Execution Times: | 00:02:53.734 | 00:05:23.069 | +| Total | 00:02:53.858 | 00:05:23.196 | From 694ef2bd0aac697f25a1ee38a4805e73966c0429 Mon Sep 17 00:00:00 2001 From: Konstantin Date: Sun, 14 Feb 2016 15:56:48 +0300 Subject: [PATCH 02/10] Fix empty headers display --- Example.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Example.md b/Example.md index 9cb57e9..4f17b96 100644 --- a/Example.md +++ b/Example.md @@ -37,7 +37,7 @@ SQL Server parse and compile time:
## Output Statement -| | CPU | Elapsed | +|| CPU | Elapsed | |------------------------------------|--------------|--------------| | SQL Server parse and compile time: | 00:00:00.108 | 00:00:00.108 | @@ -54,11 +54,11 @@ SQL Server parse and compile time:
| | Worktable | 999,172 | 16,247,024 | 0 | 0 | 0 | 0 | 0 | 91.000 | | | Worktable | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0.000 | -| | CPU | Elapsed | +|| CPU | Elapsed | |-----------------------------|--------------|--------------| | SQL Server Execution Times: | 00:02:36.527 | 00:04:44.906 | -| | CPU | Elapsed | +|| CPU | Elapsed | |------------------------------------|--------------|--------------| | SQL Server parse and compile time: | 00:00:00.016 | 00:00:00.019 | @@ -72,18 +72,18 @@ SQL Server parse and compile time:
| | Posts | 1 | 165,586 | 18 | 49,191 | 823,463 | 42,854 | 3,272 | 36.224 | | | Users | 1 | 41,405 | 3 | 41,401 | 0 | 0 | 0 | 9.058 | -| | CPU | Elapsed | +|| CPU | Elapsed | |-----------------------------|--------------|--------------| | SQL Server Execution Times: | 00:00:17.207 | 00:00:38.163 | **Msg 207, Level 16, State 1, Line 1
Invalid column name 'scores'.** -| | CPU | Elapsed | +|| CPU | Elapsed | |------------------------------------|--------------|--------------| | SQL Server parse and compile time: | 00:00:00.000 | 00:00:00.000 | -| | CPU | Elapsed | +|| CPU | Elapsed | |-----------------------------|--------------|--------------| | SQL Server Execution Times: | 00:00:00.000 | 00:00:00.000 | @@ -100,7 +100,7 @@ Invalid column name 'scores'.** | Votes | 1 | 250,128 | 10 | 250,104 | 0 | 0 | 0 | 1.366 | | Worktable | 999,172 | 16,247,024 | 0 | 0 | 0 | 0 | 0 | 88.728 | -| | CPU | Elapsed | +|| CPU | Elapsed | |------------------------------------|--------------|--------------| | SQL Server parse and compile time: | 00:00:00.124 | 00:00:00.127 | | SQL Server Execution Times: | 00:02:53.734 | 00:05:23.069 | From 1a70aa6f5a2b26508ba728266e6c5838cf4320e7 Mon Sep 17 00:00:00 2001 From: Konstantin Date: Sun, 14 Feb 2016 15:58:14 +0300 Subject: [PATCH 03/10] Add useful info --- README.md | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index e91608f..64c11cb 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,8 @@ -Statistics-IO-Parser -==================== +# Microsoft SQL Server Statistics IO and Time Parser +Sometimes reading SQL Server ouput from Statistics IO and Statistics Time can be a total drag. This page will help with that. Just paste in the output of Statistics IO and/or Statistics Time and press Parse. Your output will be formatted and totaled. Enjoy. + +Useful links: + - [SET STATISTICS IO (Transact-SQL)](https://msdn.microsoft.com/en-us/library/ms184361.aspx) + - [SET STATISTICS TIME (Transact-SQL)](https://msdn.microsoft.com/en-us/library/ms190287.aspx) + +## [Exapmle](/Example.md) From 2a1add708d6953713b57f1f1157fcd8207cfa128 Mon Sep 17 00:00:00 2001 From: Richie Rump Date: Wed, 17 Feb 2016 15:11:07 -0500 Subject: [PATCH 04/10] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 64c11cb..2a89a5e 100644 --- a/README.md +++ b/README.md @@ -5,4 +5,4 @@ Useful links: - [SET STATISTICS IO (Transact-SQL)](https://msdn.microsoft.com/en-us/library/ms184361.aspx) - [SET STATISTICS TIME (Transact-SQL)](https://msdn.microsoft.com/en-us/library/ms190287.aspx) -## [Exapmle](/Example.md) +## [Example](/Example.md) From 0492e020e864c0bd25756fa1fdc95432cafd0a15 Mon Sep 17 00:00:00 2001 From: Orestes Date: Thu, 5 Oct 2017 15:28:48 +0100 Subject: [PATCH 05/10] On page load, focus on StatIOText textarea This one-word PR fixes #43. --- src/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.html b/src/index.html index e05f89e..d65d51e 100644 --- a/src/index.html +++ b/src/index.html @@ -74,7 +74,7 @@

Statistics Parser

Show Example Statistics IO Output - +

From fe87c46cd3c17657a63bc140a0418ed39a723cf3 Mon Sep 17 00:00:00 2001 From: Orestes Date: Thu, 5 Oct 2017 15:48:24 +0100 Subject: [PATCH 06/10] Provide clearance for Results Fixes the problem where the first line of parsed text gets shifted to the right by the Chunky Bootstrap Buttons. To replicate the current problem, try parsing: Line 1 Line 2 Line 3 The first line will get pushed to the right of the Parse button. --- src/index.html | 1 + 1 file changed, 1 insertion(+) diff --git a/src/index.html b/src/index.html index e05f89e..1194c31 100644 --- a/src/index.html +++ b/src/index.html @@ -96,6 +96,7 @@

Statistics Parser

+

 

 

From 7c8b881b6720e44a476c4bc02931f4dfeff62cd3 Mon Sep 17 00:00:00 2001 From: Orestes Date: Thu, 8 Feb 2018 13:15:49 +0000 Subject: [PATCH 07/10] Typo fix: ouput ouput changed to output. --- src/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.html b/src/index.html index e05f89e..651daa1 100644 --- a/src/index.html +++ b/src/index.html @@ -61,7 +61,7 @@

Statistics Parser

- Sometimes reading SQL Server ouput from Statistics IO and Statistics Time can be + Sometimes reading SQL Server output from Statistics IO and Statistics Time can be a total drag. This page will help with that. Just paste in the output of Statistics IO and/or Statistics Time and press Parse. Your output will be formatted and totaled. Enjoy.
From ac1afde4ec9a7170d472988df2c9e431e43d8afa Mon Sep 17 00:00:00 2001 From: Orestes Date: Thu, 8 Feb 2018 13:17:25 +0000 Subject: [PATCH 08/10] Fix ouput typo in README too --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 2a89a5e..6b7c193 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ # Microsoft SQL Server Statistics IO and Time Parser -Sometimes reading SQL Server ouput from Statistics IO and Statistics Time can be a total drag. This page will help with that. Just paste in the output of Statistics IO and/or Statistics Time and press Parse. Your output will be formatted and totaled. Enjoy. +Sometimes reading SQL Server output from Statistics IO and Statistics Time can be a total drag. This page will help with that. Just paste in the output of Statistics IO and/or Statistics Time and press Parse. Your output will be formatted and totaled. Enjoy. Useful links: - [SET STATISTICS IO (Transact-SQL)](https://msdn.microsoft.com/en-us/library/ms184361.aspx) From b12992a4f72cd9e0f43dc64a80f6452fda01def2 Mon Sep 17 00:00:00 2001 From: Nisarg Shah Date: Mon, 10 Feb 2020 19:22:37 +0530 Subject: [PATCH 09/10] Fixed outputTimeTable and outputTimeTableTotals markup The `
` element is not closed correctly right now. This causes the browser to do a bit of error-correction. The error-correction process itself is a bit buggy, and in this case it creates a hierarchy of tables instead of putting tables side-by-side. That causes performance issues when large amount of data is loaded. This change should fix: https://github.com/Jorriss/StatisticsParser/issues/34 --- src/assets/js/statsioparser.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/assets/js/statsioparser.js b/src/assets/js/statsioparser.js index f5d924c..06c3fea 100644 --- a/src/assets/js/statsioparser.js +++ b/src/assets/js/statsioparser.js @@ -353,7 +353,7 @@ function outputTimeTable(timeValues, langTitle, langDuration, elapsedLabel, cpuL //result += '' + numeral(timeValues.elapsed).format('0,0') + ''; result += '' + formatms(timeValues.cpu) + ''; result += '' + formatms(timeValues.elapsed) + ''; - result += '
'; + result += '
'; return result; } @@ -390,7 +390,7 @@ function outputTimeTableTotals(executionValues, compileValues, langCompileTitle, //result += '' + numeral(elapsedTotal).format('0,0') + ''; result += '' + formatms(cpuTotal) + ''; result += '' + formatms(elapsedTotal) + ''; - result += '
'; + result += '
'; return result; } From b45fe6eade3eb7d1c662a35eaee062f1259adde7 Mon Sep 17 00:00:00 2001 From: Roshak Date: Wed, 21 Oct 2020 23:17:45 +0200 Subject: [PATCH 10/10] Added italian language --- src/assets/data/languagetext-it.json | 36 ++++++++++++++++++++++++++++ src/assets/js/statsioparser.js | 6 +++++ 2 files changed, 42 insertions(+) create mode 100644 src/assets/data/languagetext-it.json diff --git a/src/assets/data/languagetext-it.json b/src/assets/data/languagetext-it.json new file mode 100644 index 0000000..969f81d --- /dev/null +++ b/src/assets/data/languagetext-it.json @@ -0,0 +1,36 @@ +{ + "langvalue" : "it", + "langname" : "Italian" , + "table" : "Tabella", + "scan" : "Conteggio analisi ", + "logical" : "letture logiche ", + "physical" : "letture fisiche ", + "readahead" : "letture read-ahead ", + "loblogical" : "letture logiche LOB ", + "lobphysical" : "letture fisiche LOB ", + "lobreadahead" : "letture LOB read-ahead ", + "headerrownum" : "Riga", + "headertable" : "Tabella", + "headerscan" : "Conteggio analisi", + "headerlogical" : "Letture logiche", + "headerphysical" : "Letture fisiche", + "headerreadahead" : "Letture read-ahead", + "headerloblogical" : "Letture logiche LOB", + "headerlobphysical" : "Letture fisiche LOB", + "headerlobreadahead" : "Letture LOB read-ahead", + "headerperlogicalread" : "% Letture logiche sul totale", + "executiontime" : "Tempo di esecuzione SQL Server:", + "compiletime" : "Tempo di analisi e compilazione SQL Server:", + "cputime" : "tempo di CPU = ", + "elapsedtime" : "tempo trascorso = ", + "elapsedlabel" : "Tempo trascorso", + "cpulabel" : "CPU", + "milliseconds" : "ms", + "rowsaffected" : "righe interessate" , + "headerrowsaffected" : " righe interessate", + "headerrowaffected" : " riga interessata", + "errormsg" : "Mes", + "sampleoutput" : "Tempo di analisi e compilazione SQL Server: \r\n tempo di CPU = 0 ms, tempo trascorso = 0 ms.\r\n\r\n(25499 righe interessate)\r\nTabella \u0027Workfile\u0027. Conteggio analisi 0, letture logiche 0, letture fisiche 0, letture server di pagine 0, letture read-ahead 0, letture read-ahead server di pagine 0, letture logiche LOB 0, letture fisiche LOB 0, letture LOB server di pagine 0, letture LOB read-ahead 0, letture read-ahead LOB server di pagine 0.\r\nTabella \u0027Worktable\u0027. Conteggio analisi 0, letture logiche 0, letture fisiche 0, letture server di pagine 0, letture read-ahead 856, letture read-ahead server di pagine 0, letture logiche LOB 0, letture fisiche LOB 0, letture LOB server di pagine 0, letture LOB read-ahead 0, letture read-ahead LOB server di pagine 0.\r\nTabella \u0027FATRIG\u0027. Conteggio analisi 1, letture logiche 13563, letture fisiche 0, letture server di pagine 0, letture read-ahead 0, letture read-ahead server di pagine 0, letture logiche LOB 0, letture fisiche LOB 0, letture LOB server di pagine 0, letture LOB read-ahead 0, letture read-ahead LOB server di pagine 0.\r\nTabella \u0027FATTES\u0027. Conteggio analisi 1, letture logiche 3748, letture fisiche 0, letture server di pagine 0, letture read-ahead 0, letture read-ahead server di pagine 0, letture logiche LOB 0, letture fisiche LOB 0, letture LOB server di pagine 0, letture LOB read-ahead 0, letture read-ahead LOB server di pagine 0.\r\nTabella \u0027COMRIG\u0027. Conteggio analisi 1, letture logiche 170, letture fisiche 0, letture server di pagine 0, letture read-ahead 0, letture read-ahead server di pagine 0, letture logiche LOB 0, letture fisiche LOB 0, letture LOB server di pagine 0, letture LOB read-ahead 0, letture read-ahead LOB server di pagine 0.\r\nTabella \u0027CONTI\u0027. Conteggio analisi 1, letture logiche 224, letture fisiche 0, letture server di pagine 0, letture read-ahead 0, letture read-ahead server di pagine 0, letture logiche LOB 0, letture fisiche LOB 0, letture LOB server di pagine 0, letture LOB read-ahead 0, letture read-ahead LOB server di pagine 0.\r\nTabella \u0027TIPIDOC\u0027. Conteggio analisi 2, letture logiche 8, letture fisiche 0, letture server di pagine 0, letture read-ahead 0, letture read-ahead server di pagine 0, letture logiche LOB 0, letture fisiche LOB 0, letture LOB server di pagine 0, letture LOB read-ahead 0, letture read-ahea LOB server di pagine 0.\r\nTabella \u0027COMTES\u0027. Conteggio analisi 1, letture logiche 1702, letture fisiche 0, letture server di pagine 0, letture read-ahead 0, letture read-ahead server di pagine 0, letture logiche LOB 0, letture fisiche LOB 0, letture LOB server di pagine 0, letture LOB read-ahead 0, letture read-ahead LOB server di pagine 0.\r\nTabella \u0027CLIENTI\u0027. Conteggio analisi 2, letture logiche 20, letture fisiche 0, letture server di pagine 0, letture read-ahead 0, letture read-ahead server di pagine 0, letture logiche LOB 0, letture fisiche LOB 0, letture LOB server di pagine 0, letture LOB read-ahead 0, letture read-ahead LOB server di pagine 0.\r\nTabella \u0027PERSONE\u0027. Conteggio analisi 4, letture logiche 794, letture fisiche 0, letture server di pagine 0, letture read-ahead 0, letture read-ahead server di pagine 0, letture logiche LOB 0, letture fisiche LOB 0, letture LOB server di pagine 0, letture LOB read-ahead 0, letture read-ahead LOB server di pagine 0.\r\nTabella \u0027ANAPAG\u0027. Conteggio analisi 1, letture logiche 5, letture fisiche 0, letture server di pagine 0, letture read-ahead 0, letture read-ahead server di pagine 0, letture logiche LOB 0, letture fisiche LOB 0, letture LOB server di pagine 0, letture LOB read-ahead 0, letture read-ahead LOB server di pagine 0.\r\nTabella \u0027NAZIONI\u0027. Conteggio analisi 1, letture logiche 2, letture fisiche 0, letture server di pagine 0, letture read-ahead 0, letture read-ahead server di pagine 0, letture logiche LOB 0, letture fisiche LOB 0, letture LOB server di pagine 0, letture LOB read-ahead 0, letture read-ahead LOB server di pagine 0.\r\nTabella \u0027AGENTI\u0027. Conteggio analisi 2, letture logiche 4, letture fisiche 0, letture server di pagine 0, letture read-ahead 0, letture read-ahead server di pagine 0, letture logiche LOB 0, letture fisiche LOB 0, letture LOB server di pagine 0, letture LOB read-ahead 0, letture read-ahead LOB server di pagine 0.\r\nTabella \u0027LOTSER\u0027. Conteggio analisi 1, letture logiche 18, letture fisiche 0, letture server di pagine 0, letture read-ahead 0, letture read-ahead server di pagine 0, letture logiche LOB 0, letture fisiche LOB 0, letture LOB server di pagine 0, letture LOB read-ahead 0, letture read-ahead LOB server di pagine 0.\r\nTabella \u0027ARTICO\u0027. Conteggio analisi 1, letture logiche 370, letture fisiche 0, letture server di pagine 0, letture read-ahead 0, letture read-ahead server di pagine 0, letture logiche LOB 0, letture fisiche LOB 0, letture LOB server di pagine 0, letture LOB read-ahead 0, letture read-ahead LOB server di pagine 0.\r\nTabella \u0027CLASSI\u0027. Conteggio analisi 1, letture logiche 2, letture fisiche 0, letture server di pagine 0, letture read-ahead 0, letture read-ahead server di pagine 0, letture logiche LOB 0, letture fisiche LOB 0, letture LOB server di pagine 0, letture LOB read-ahead 0, letture read-ahead LOB server di pagine 0.\r\nTabella \u0027CATOMO\u0027. Conteggio analisi 1, letture logiche 2, letture fisiche 0, letture server di pagine 0, letture read-ahead 0, letture read-ahead server di pagine 0, letture logiche LOB 0, letture fisiche LOB 0, letture LOB server di pagine 0, letture LOB read-ahead 0, letture read-ahead LOB server di pagine 0.\r\nTabella \u0027GRUPPI\u0027. Conteggio analisi 1, letture logiche 2, letture fisiche 0, letture server di pagine 0, letture read-ahead 0, letture read-ahead server di pagine 0, letture logiche LOB 0, letture fisiche LOB 0, letture LOB server di pagine 0, letture LOB read-ahead 0, letture read-ahead LOB server di pagine 0.\r\nTabella \u0027LINEEP\u0027. Conteggio analisi 1, letture logiche 2, letture fisiche 0, letture server di pagine 0, letture read-ahead 0, letture read-ahead server di pagine 0, letture logiche LOB 0, letture fisiche LOB 0, letture LOB server di pagine 0, letture LOB read-ahead 0, letture read-ahead LOB server di pagine 0.\r\nTabella \u0027MARCHE\u0027. Conteggio analisi 1, letture logiche 4, letture fisiche 0, letture server di pagine 0, letture read-ahead 0, letture read-ahead server di pagine 0, letture logiche LOB 0, letture fisiche LOB 0, letture LOB server di pagine 0, letture LOB read-ahead 0, letture read-ahead LOB server di pagine 0.\r\n\r\nTempo di esecuzione SQL Server: \r\n tempo di CPU = 657 ms, tempo trascorso = 944 ms.\r\n\r\nMessaggio 207, livello 16, stato 1, riga 1\r\nIl nome di colonna \u0027test\u0027 non รจ valido.\r\n" +} + + diff --git a/src/assets/js/statsioparser.js b/src/assets/js/statsioparser.js index f5d924c..02d3fcf 100644 --- a/src/assets/js/statsioparser.js +++ b/src/assets/js/statsioparser.js @@ -79,8 +79,11 @@ function determineLang(strRow){ if (strRow.substring(0,7) === 'Table \'') { lang = 1; } // English else if (strRow.substring(0, 7) === 'Tabla \'') { lang = 2; } // Spanish + else if (strRow.substring(0, 7) === 'Tabella \'') { lang = 3; } // Italian else if ($.trim(strRow.substring(0, 6)) === 'Tiempo') { lang = 2; } // Spanish + else if ($.trim(strRow.substring(0, 6)) === 'Tempo') { lang = 3; } // Italian else if ($.trim(strRow.substring(0, 7)) === 'Tiempos') { lang = 2; } // Spanish + else if ($.trim(strRow.substring(0, 7)) === 'Tempo') { lang = 3; } // Italian return lang; } @@ -94,6 +97,9 @@ function determineLangFilename (langType) { case 'es': // Spanish filename = 'assets/data/languagetext-es.json' break; + case 'it': // Italian + filename = 'assets/data/languagetext-it.json' + break; default : filename = 'assets/data/languagetext-en.json' break;