{"id":2884,"date":"2023-02-15T07:00:00","date_gmt":"2023-02-15T04:00:00","guid":{"rendered":"https:\/\/www.dataplatform.gr\/?p=2884"},"modified":"2025-07-20T13:52:30","modified_gmt":"2025-07-20T10:52:30","slug":"pos-mporoyme-na-exagoyme-kathimerina-d","status":"publish","type":"post","link":"https:\/\/www.dataplatform.gr\/en\/pos-mporoyme-na-exagoyme-kathimerina-d\/","title":{"rendered":"How can we export daily data from SQL Server to Excel and email it"},"content":{"rendered":"<p>In the daily operations of companies it is often necessary to extract daily data from the database and give it to an Excel.<\/p>\n\n\n\n<p>In these Excels, we usually want to have a specific name along with a date and to be stored in a specific path. It is very useful to email these Excels directly from SQL Server itself.<\/p>\n\n\n\n<p>In the article we will analyze step by step the way and what is required to do all of the above without the use of packages <a href=\"https:\/\/docs.microsoft.com\/en-us\/sql\/integration-services\/sql-server-integration-services?view=sql-server-ver15\" target=\"_blank\" rel=\"noreferrer noopener\">SSIS<\/a>.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">The prerequisites<\/h2>\n\n\n\n<p>We should have one pre-installed <strong>provider <\/strong>from Microsoft that will allow us to write our data from the database to Excel. We can download the 12 version from <a href=\"https:\/\/www.microsoft.com\/en-us\/download\/details.aspx?id=54920\" target=\"_blank\" rel=\"noreferrer noopener\">here<\/a>.<\/p>\n\n\n\n<p>Must be the account that raises it <strong>service account <\/strong>of SQL Server to have the right to write to the path of these files in the operating system as well <strong>sysadmin <\/strong>in the instance.<\/p>\n\n\n\n<p>Finally, we should have run the following in the instance that will allow us to run the T-SQL script to write to Excel:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"sql\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\" data-no-translation=\"\" data-no-auto-translation=\"\">sp_configure 'show advanced options', 1;\nGO\nRECONFIGURE;\nGO\nsp_configure 'Ad Hoc Distributed Queries', 1;\nGO\nRECONFIGURE;\nGO\nEXECUTE sp_configure 'xp_cmdshell', 1;  \nGO\nRECONFIGURE;\nGO\nEXEC master.dbo.sp_MSset_oledb_prop N'Microsoft.ACE.OLEDB.12.0', N'AllowInProcess', 1\nGO\nEXEC master.dbo.sp_MSset_oledb_prop N'Microsoft.ACE.OLEDB.12.0', N'DynamicParameters', 1\nGO\n<\/pre>\n\n\n\n<p>To see what providers are installed on the instance:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"sql\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\" data-no-translation=\"\" data-no-auto-translation=\"\">EXEC master.dbo.sp_MSset_oledb_prop<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">The example<\/h2>\n\n\n\n<p>We have a customers table in which we have records. We want to export it to an Excel with title colors and named formats <em>customers_yyyymmdd.xlsx<\/em>. As a next step we want to send this Excel in an email to a recipient.<\/p>\n\n\n\n<p>So for the example we have only passed 3 entries in the table.<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"sql\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\" data-no-translation=\"\" data-no-auto-translation=\"\">insert into mig_db.dbo.customers\nvalues\n('Stratos'),\n('Nikos'),\n('Giorgos');\n\nselect * from mig_db.dbo.customers;<\/pre>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"283\" height=\"178\" src=\"https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2021\/02\/exo-01.png\" alt=\"\" class=\"wp-image-2885\"\/><figcaption class=\"wp-element-caption\">01<\/figcaption><\/figure>\n\n\n\n<p>To have the Excel formats we want, i.e. Bold, margins, yellow cells, we make a <em>template.xlsx<\/em> in which we will have done all these formats and saved it in the path where the files will be extracted.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"590\" height=\"431\" src=\"https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2021\/02\/exo-03.png\" alt=\"\" class=\"wp-image-2886\" srcset=\"https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2021\/02\/exo-03.png 590w, https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2021\/02\/exo-03-300x219.png 300w\" sizes=\"auto, (max-width: 590px) 100vw, 590px\" \/><figcaption class=\"wp-element-caption\">02<\/figcaption><\/figure>\n\n\n\n<p>The next step is to have our script copy the template to a new file with the name we want the final one to have, e.g. <em>customers_20210101.xlsx<\/em>.<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"sql\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\" data-no-translation=\"\" data-no-auto-translation=\"\">declare @Sql varchar(200)\nset @Sql='COPY C:\\Share\\template.xlsx C:\\Share\\customers_'+convert(varchar(15),getdate(),112)+'.xlsx'\nprint @Sql\nexec xp_cmdshell @Sql\nGO<\/pre>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"257\" height=\"134\" src=\"https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2021\/02\/exo-04.png\" alt=\"\" class=\"wp-image-2887\"\/><figcaption class=\"wp-element-caption\">03<\/figcaption><\/figure>\n\n\n\n<p>So we will immediately see that the file was created in our folder which still does not contain records.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"763\" height=\"264\" src=\"https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2021\/02\/exo-05.png\" alt=\"\" class=\"wp-image-2889\" srcset=\"https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2021\/02\/exo-05.png 763w, https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2021\/02\/exo-05-300x104.png 300w\" sizes=\"auto, (max-width: 763px) 100vw, 763px\" \/><figcaption class=\"wp-element-caption\">04<\/figcaption><\/figure>\n\n\n\n<p>In the next step, the records will be transferred to Excel. There you should:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>in the variable <em>@importq<\/em> to put the query that will read from the table<\/li>\n\n\n\n<li>in the variable <em>@dbfile<\/em> put the path of the file with the name it will have as we did in the previous step with the copy command (<em>C:\\Share\\customers_&#039;+convert(varchar(15),getdate(),112)+&#039;.xlsx&#039;<\/em>)<\/li>\n\n\n\n<li>We should change the name in the Excel sheet template to Sheet1 (if it isn&#039;t already) otherwise we should change it to the @dbfile variable in <em>select * from [Sheet1$]<\/em><\/li>\n<\/ul>\n\n\n\n<p><\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"sql\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\" data-no-translation=\"\" data-no-auto-translation=\"\">USE mig_db\nGO\nset ANSI_NULLS ON\nGO\nset QUOTED_IDENTIFIER ON\nGO\ndeclare @dbfile varchar(2000), @importq varchar(2000)\nset @importq = 'select * from dbo.customers'\nset @dbfile = 'INSERT INTO OPENROWSET(''Microsoft.ACE.OLEDB.12.0'''+','+'''Excel 12.0;Database=C:\\Share\\customers_'+convert(varchar(15),getdate(),112)+'.xlsx'''+','+'''select * from [Sheet1$]'''+')'+@importq\nprint @dbfile\nexec(@dbfile)\ngo<\/pre>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"155\" src=\"https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2021\/02\/exo-06-1024x155.png\" alt=\"\" class=\"wp-image-2890\" srcset=\"https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2021\/02\/exo-06-1024x155.png 1024w, https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2021\/02\/exo-06-300x45.png 300w, https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2021\/02\/exo-06-768x116.png 768w, https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2021\/02\/exo-06.png 1135w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><figcaption class=\"wp-element-caption\">05<\/figcaption><\/figure>\n\n\n\n<p>That was it, if we now open Excel we will see the records with the formatting we want.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"874\" height=\"453\" src=\"https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2021\/02\/exo-07.png\" alt=\"\" class=\"wp-image-2891\" srcset=\"https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2021\/02\/exo-07.png 874w, https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2021\/02\/exo-07-300x155.png 300w, https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2021\/02\/exo-07-768x398.png 768w\" sizes=\"auto, (max-width: 874px) 100vw, 874px\" \/><figcaption class=\"wp-element-caption\">06<\/figcaption><\/figure>\n\n\n\n<p>In <a href=\"https:\/\/www.dataplatform.gr\/en\/pos-stelnoyme-email-mesa-apo-ton-sql-server\/\" target=\"_blank\" rel=\"noreferrer noopener\">previous article<\/a> we had seen how to activate it<strong> Database Mail<\/strong> in SQL Server. After doing these steps with the following script we can send the Excel by Email as well.<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"sql\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\" data-no-translation=\"\" data-no-auto-translation=\"\">declare @dbfile2 varchar(1000)\nset @dbfile2 = 'C:\\Share\\customers_'+convert(varchar(15),getdate(),112)+'.xlsx'\nEXEC msdb.dbo.sp_send_dbmail  \n@profile_name = 'gmail',  \n@recipients = 'account@dataplatform.gr',  \n@subject = 'Customers Report',  \n@body = 'Here is the daily customer report.',\n@file_attachments = @dbfile2;\nprint @dbfile2\n<\/pre>\n\n\n\n<p>So if everything goes well, the Email will come as shown in the image below.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"444\" src=\"https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2021\/02\/exo-09-1024x444.png\" alt=\"\" class=\"wp-image-2892\" srcset=\"https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2021\/02\/exo-09-1024x444.png 1024w, https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2021\/02\/exo-09-300x130.png 300w, https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2021\/02\/exo-09-768x333.png 768w, https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2021\/02\/exo-09.png 1122w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><figcaption class=\"wp-element-caption\">07<\/figcaption><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\">In summary the code:<\/h2>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"sql\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\" data-no-translation=\"\" data-no-auto-translation=\"\">declare @Sql varchar(200)\nset @Sql='COPY C:\\Share\\template.xlsx C:\\Share\\customers_'+convert(varchar(15),getdate(),112)+'.xlsx'\nprint @Sql\nexec xp_cmdshell @Sql\nGO\n\nset ANSI_NULLS ON\nGO\nset QUOTED_IDENTIFIER ON\nGO\ndeclare @dbfile varchar(2000), @importq varchar(2000)\nset @importq = 'select * from mig_db.dbo.customers'\nset @dbfile = 'INSERT INTO OPENROWSET(''Microsoft.ACE.OLEDB.12.0'''+','+'''Excel 12.0;Database=C:\\Share\\customers_'+convert(varchar(15),getdate(),112)+'.xlsx'''+','+'''select * from [Sheet1$]'''+')'+@importq\nprint @dbfile\nexec(@dbfile)\ngo\n\ndeclare @dbfile2 varchar(1000)\nset @dbfile2 = 'C:\\Share\\customers_'+convert(varchar(15),getdate(),112)+'.xlsx'\nEXEC msdb.dbo.sp_send_dbmail  \n@profile_name = 'gmail',  \n@recipients = 'account@dataplatform.gr',  \n@subject = 'Customers Report',  \n@body = 'Here is the daily customer report.',\n@file_attachments = @dbfile2;\nprint @dbfile2<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">And if I want this whole process to happen automatically every day at a certain time?<\/h2>\n\n\n\n<p>We can just make one <strong>Job <\/strong>to<strong> SQL Server Agent<\/strong>.<\/p>\n\n\n\n<p>The process is to right click <strong>New<\/strong>, <strong>Job<\/strong>&#8230; , <strong>Steps<\/strong>, <strong>New<\/strong>..., give a name to the step, select the base that has the data and add the sql scripts we created before, press <strong>OK <\/strong>and finally on the tab <strong>Schedules <\/strong>to define when it will run. <\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"423\" src=\"https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2021\/02\/exo-10-1024x423.png\" alt=\"\" class=\"wp-image-2894\" srcset=\"https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2021\/02\/exo-10-1024x423.png 1024w, https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2021\/02\/exo-10-300x124.png 300w, https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2021\/02\/exo-10-768x317.png 768w, https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2021\/02\/exo-10-1536x634.png 1536w, https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2021\/02\/exo-10.png 1597w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><figcaption class=\"wp-element-caption\">08<\/figcaption><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\">Is there an alternative more direct way?<\/h2>\n\n\n\n<p>In case we don&#039;t care about the appearance of Excel with bold titles, colors, etc., we don&#039;t care about keeping the reports automatically and giving them a name with the date dynamically, then we can during the execution of the procedure that sends the msdb.dbo email.<strong>sp_send_dbmail <\/strong>define directly the query we want to execute and attach it as an attachment as in the previous way:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"sql\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\" data-no-translation=\"\" data-no-auto-translation=\"\">EXEC msdb.dbo.sp_send_dbmail\n@profile_name = 'gmail',\n@recipients = 'account@dataplatform.gr',\n@query = '\nset nocount on;\nUSE mig_db;\ngo\nselect * from dbo.customers\ngo',\n@subject = 'Customers Report',\n@body = 'Here is the daily customer report.',\n@query_attachment_filename='customers.xls',\n@query_result_header = 1,\n@query_result_width = 256,\n@query_result_separator = ',',\n@exclude_query_output = 1,\n@append_query_error = 1,\n@query_no_truncate = 0,\n@query_result_no_padding = 1,\n@attach_query_result_as_file = 1;<\/pre>","protected":false},"excerpt":{"rendered":"<p>In the daily operations of companies it is often necessary to extract daily data from the database and give it to an Excel. In these Excels, we usually want to have a specific name along with a date and to be stored in a specific path. It is very useful to send these Excels directly by email from [...]<\/p>","protected":false},"author":1,"featured_media":695,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[12,11,17,15],"tags":[24,29,43,23,30,155,6],"class_list":["post-2884","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-business-intelligence","category-databases","category-ms-excel","category-ms-sqlserver","tag-data-analysis","tag-databases","tag-microsoft-excel","tag-microsoft","tag-rdbms","tag-reporting","tag-sqlserver"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>\u03a0\u03ce\u03c2 \u03bc\u03c0\u03bf\u03c1\u03bf\u03cd\u03bc\u03b5 \u03bd\u03b1 \u03b5\u03be\u03ac\u03b3\u03bf\u03c5\u03bc\u03b5 \u03ba\u03b1\u03b8\u03b7\u03bc\u03b5\u03c1\u03b9\u03bd\u03ac \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03b1\u03c0\u03cc \u03c4\u03bf\u03bd SQL Server \u03c3\u03b5 Excel \u03ba\u03b1\u03b9 \u03bd\u03b1 \u03c4\u03b1 \u03c3\u03c4\u03ad\u03bb\u03bd\u03bf\u03c5\u03bc\u03b5 \u03bc\u03b5 email - DataPlatform.gr<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.dataplatform.gr\/en\/pos-mporoyme-na-exagoyme-kathimerina-d\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"\u03a0\u03ce\u03c2 \u03bc\u03c0\u03bf\u03c1\u03bf\u03cd\u03bc\u03b5 \u03bd\u03b1 \u03b5\u03be\u03ac\u03b3\u03bf\u03c5\u03bc\u03b5 \u03ba\u03b1\u03b8\u03b7\u03bc\u03b5\u03c1\u03b9\u03bd\u03ac \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03b1\u03c0\u03cc \u03c4\u03bf\u03bd SQL Server \u03c3\u03b5 Excel \u03ba\u03b1\u03b9 \u03bd\u03b1 \u03c4\u03b1 \u03c3\u03c4\u03ad\u03bb\u03bd\u03bf\u03c5\u03bc\u03b5 \u03bc\u03b5 email - DataPlatform.gr\" \/>\n<meta property=\"og:description\" content=\"\u03a3\u03c4\u03b9\u03c2 \u03ba\u03b1\u03b8\u03b7\u03bc\u03b5\u03c1\u03b9\u03bd\u03ad\u03c2 \u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b5\u03c2 \u03c4\u03c9\u03bd \u03b5\u03c4\u03b1\u03b9\u03c1\u03b9\u03ce\u03bd \u03b5\u03af\u03bd\u03b1\u03b9 \u03c3\u03c5\u03c7\u03bd\u03ae \u03b1\u03bd\u03ac\u03b3\u03ba\u03b7 \u03bd\u03b1 \u03c0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03b5\u03be\u03ac\u03b3\u03bf\u03bd\u03c4\u03b1\u03b9 \u03ba\u03b1\u03b8\u03b7\u03bc\u03b5\u03c1\u03b9\u03bd\u03ac \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03b1\u03c0\u03cc \u03c4\u03b7 \u03b2\u03ac\u03c3\u03b7 \u03ba\u03b1\u03b9 \u03bd\u03b1 \u03b4\u03af\u03bd\u03bf\u03bd\u03c4\u03b1\u03b9 \u03c3\u03b5 \u03ba\u03ac\u03c0\u03bf\u03b9\u03bf Excel. \u03a3\u03b5 \u03b1\u03c5\u03c4\u03ac \u03c4\u03b1 Excel \u03c3\u03c5\u03bd\u03ae\u03b8\u03c9\u03c2 \u03b8\u03ad\u03bb\u03bf\u03c5\u03bc\u03b5 \u03bd\u03b1 \u03ad\u03c7\u03bf\u03c5\u03bc\u03b5 \u03ba\u03ac\u03c0\u03bf\u03b9\u03bf \u03c3\u03c5\u03b3\u03ba\u03b5\u03ba\u03c1\u03b9\u03bc\u03ad\u03bd\u03bf \u03cc\u03bd\u03bf\u03bc\u03b1 \u03bc\u03b1\u03b6\u03af \u03bc\u03b5 \u03b7\u03bc\u03b5\u03c1\u03bf\u03bc\u03b7\u03bd\u03af\u03b1 \u03ba\u03b1\u03b9 \u03bd\u03b1 \u03b1\u03c0\u03bf\u03b8\u03b7\u03ba\u03b5\u03cd\u03bf\u03bd\u03c4\u03b1\u03b9 \u03c3\u03b5 \u03c3\u03c5\u03b3\u03ba\u03b5\u03ba\u03c1\u03b9\u03bc\u03ad\u03bd\u03bf path. \u03a0\u03bf\u03bb\u03cd \u03c7\u03c1\u03ae\u03c3\u03b9\u03bc\u03bf \u03b5\u03af\u03bd\u03b1\u03b9 \u03bd\u03b1 \u03c3\u03c4\u03ad\u03bb\u03bd\u03bf\u03bd\u03c4\u03b1\u03b9 \u03b1\u03c5\u03c4\u03ac \u03c4\u03b1 Excel \u03b1\u03c0\u03b5\u03c5\u03b8\u03b5\u03af\u03b1\u03c2 \u03bc\u03b5 email \u03b1\u03c0\u03cc [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.dataplatform.gr\/en\/pos-mporoyme-na-exagoyme-kathimerina-d\/\" \/>\n<meta property=\"og:site_name\" content=\"DataPlatform.gr\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/dataplatform.gr\/\" \/>\n<meta property=\"article:published_time\" content=\"2023-02-15T04:00:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-07-20T10:52:30+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2020\/06\/dp_excel_sqlserver.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1280\" \/>\n\t<meta property=\"og:image:height\" content=\"720\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Stratos Matzouranis\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Stratos Matzouranis\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.dataplatform.gr\\\/pos-mporoyme-na-exagoyme-kathimerina-d\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.dataplatform.gr\\\/pos-mporoyme-na-exagoyme-kathimerina-d\\\/\"},\"author\":{\"name\":\"Stratos Matzouranis\",\"@id\":\"https:\\\/\\\/www.dataplatform.gr\\\/#\\\/schema\\\/person\\\/e87bf4fd02b65cb6aa0942f87245bbaf\"},\"headline\":\"\u03a0\u03ce\u03c2 \u03bc\u03c0\u03bf\u03c1\u03bf\u03cd\u03bc\u03b5 \u03bd\u03b1 \u03b5\u03be\u03ac\u03b3\u03bf\u03c5\u03bc\u03b5 \u03ba\u03b1\u03b8\u03b7\u03bc\u03b5\u03c1\u03b9\u03bd\u03ac \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03b1\u03c0\u03cc \u03c4\u03bf\u03bd SQL Server \u03c3\u03b5 Excel \u03ba\u03b1\u03b9 \u03bd\u03b1 \u03c4\u03b1 \u03c3\u03c4\u03ad\u03bb\u03bd\u03bf\u03c5\u03bc\u03b5 \u03bc\u03b5 email\",\"datePublished\":\"2023-02-15T04:00:00+00:00\",\"dateModified\":\"2025-07-20T10:52:30+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.dataplatform.gr\\\/pos-mporoyme-na-exagoyme-kathimerina-d\\\/\"},\"wordCount\":99,\"commentCount\":4,\"publisher\":{\"@id\":\"https:\\\/\\\/www.dataplatform.gr\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.dataplatform.gr\\\/pos-mporoyme-na-exagoyme-kathimerina-d\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.dataplatform.gr\\\/wp-content\\\/uploads\\\/2020\\\/06\\\/dp_excel_sqlserver.png\",\"keywords\":[\"Data Analysis\",\"Databases\",\"Excel\",\"Microsoft\",\"RDBMS\",\"Reporting\",\"SQL Server\"],\"articleSection\":[\"Business Intelligence\",\"Databases\",\"Microsoft Excel\",\"Microsoft SQL Server\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.dataplatform.gr\\\/pos-mporoyme-na-exagoyme-kathimerina-d\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.dataplatform.gr\\\/pos-mporoyme-na-exagoyme-kathimerina-d\\\/\",\"url\":\"https:\\\/\\\/www.dataplatform.gr\\\/pos-mporoyme-na-exagoyme-kathimerina-d\\\/\",\"name\":\"\u03a0\u03ce\u03c2 \u03bc\u03c0\u03bf\u03c1\u03bf\u03cd\u03bc\u03b5 \u03bd\u03b1 \u03b5\u03be\u03ac\u03b3\u03bf\u03c5\u03bc\u03b5 \u03ba\u03b1\u03b8\u03b7\u03bc\u03b5\u03c1\u03b9\u03bd\u03ac \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03b1\u03c0\u03cc \u03c4\u03bf\u03bd SQL Server \u03c3\u03b5 Excel \u03ba\u03b1\u03b9 \u03bd\u03b1 \u03c4\u03b1 \u03c3\u03c4\u03ad\u03bb\u03bd\u03bf\u03c5\u03bc\u03b5 \u03bc\u03b5 email - DataPlatform.gr\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.dataplatform.gr\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.dataplatform.gr\\\/pos-mporoyme-na-exagoyme-kathimerina-d\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.dataplatform.gr\\\/pos-mporoyme-na-exagoyme-kathimerina-d\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.dataplatform.gr\\\/wp-content\\\/uploads\\\/2020\\\/06\\\/dp_excel_sqlserver.png\",\"datePublished\":\"2023-02-15T04:00:00+00:00\",\"dateModified\":\"2025-07-20T10:52:30+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.dataplatform.gr\\\/pos-mporoyme-na-exagoyme-kathimerina-d\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.dataplatform.gr\\\/pos-mporoyme-na-exagoyme-kathimerina-d\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.dataplatform.gr\\\/pos-mporoyme-na-exagoyme-kathimerina-d\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.dataplatform.gr\\\/wp-content\\\/uploads\\\/2020\\\/06\\\/dp_excel_sqlserver.png\",\"contentUrl\":\"https:\\\/\\\/www.dataplatform.gr\\\/wp-content\\\/uploads\\\/2020\\\/06\\\/dp_excel_sqlserver.png\",\"width\":1280,\"height\":720},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.dataplatform.gr\\\/pos-mporoyme-na-exagoyme-kathimerina-d\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\u0391\u03c1\u03c7\u03b9\u03ba\u03ae\",\"item\":\"https:\\\/\\\/www.dataplatform.gr\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Databases\",\"item\":\"https:\\\/\\\/www.dataplatform.gr\\\/category\\\/databases\\\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Microsoft SQL Server\",\"item\":\"https:\\\/\\\/www.dataplatform.gr\\\/category\\\/databases\\\/ms-sqlserver\\\/\"},{\"@type\":\"ListItem\",\"position\":4,\"name\":\"\u03a0\u03ce\u03c2 \u03bc\u03c0\u03bf\u03c1\u03bf\u03cd\u03bc\u03b5 \u03bd\u03b1 \u03b5\u03be\u03ac\u03b3\u03bf\u03c5\u03bc\u03b5 \u03ba\u03b1\u03b8\u03b7\u03bc\u03b5\u03c1\u03b9\u03bd\u03ac \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03b1\u03c0\u03cc \u03c4\u03bf\u03bd SQL Server \u03c3\u03b5 Excel \u03ba\u03b1\u03b9 \u03bd\u03b1 \u03c4\u03b1 \u03c3\u03c4\u03ad\u03bb\u03bd\u03bf\u03c5\u03bc\u03b5 \u03bc\u03b5 email\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.dataplatform.gr\\\/#website\",\"url\":\"https:\\\/\\\/www.dataplatform.gr\\\/\",\"name\":\"dataplatform.gr - Sky is not the limit!\",\"description\":\"\u0398\u03b5\u03c9\u03c1\u03af\u03b1, \u03bf\u03b4\u03b7\u03b3\u03bf\u03af \u03ba\u03b1\u03b9 \u03c3\u03ba\u03ad\u03c8\u03b5\u03b9\u03c2 \u03b3\u03b9\u03b1 \u03bd\u03b1 \u03ba\u03ac\u03bd\u03b5\u03c4\u03b5 \u03c4\u03b7 \u03b4\u03bf\u03c5\u03bb\u03b5\u03b9\u03ac \u03c3\u03b1\u03c2 \u03c0\u03b9\u03bf \u03c0\u03b1\u03c1\u03b1\u03b3\u03c9\u03b3\u03b9\u03ba\u03ac \u03ba\u03b1\u03b9 \u03c0\u03b9\u03bf \u03b5\u03cd\u03ba\u03bf\u03bb\u03b1 \u03c0\u03ac\u03bd\u03c9 \u03c3\u03c4\u03b9\u03c2 \u03b2\u03ac\u03c3\u03b5\u03b9\u03c2 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03c9\u03bd, \u03c3\u03c4\u03b7\u03bd SQL, \u03c3\u03c4\u03bf Business Intelligence \u03ba\u03b1\u03b9 \u03c3\u03c4\u03b1 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03b3\u03b5\u03bd\u03b9\u03ba\u03cc\u03c4\u03b5\u03c1\u03b1.\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.dataplatform.gr\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.dataplatform.gr\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.dataplatform.gr\\\/#organization\",\"name\":\"dataplatform.gr\",\"url\":\"https:\\\/\\\/www.dataplatform.gr\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.dataplatform.gr\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.dataplatform.gr\\\/wp-content\\\/uploads\\\/2020\\\/06\\\/dp_logo_wbacki.png\",\"contentUrl\":\"https:\\\/\\\/www.dataplatform.gr\\\/wp-content\\\/uploads\\\/2020\\\/06\\\/dp_logo_wbacki.png\",\"width\":322,\"height\":139,\"caption\":\"dataplatform.gr\"},\"image\":{\"@id\":\"https:\\\/\\\/www.dataplatform.gr\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/dataplatform.gr\\\/\",\"https:\\\/\\\/www.linkedin.com\\\/company\\\/dataplatform-gr\\\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.dataplatform.gr\\\/#\\\/schema\\\/person\\\/e87bf4fd02b65cb6aa0942f87245bbaf\",\"name\":\"Stratos Matzouranis\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/ab973bc4bd1673c43d45de5633a624d9ad13c06902dfdd5a6e3fd9885903865e?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/ab973bc4bd1673c43d45de5633a624d9ad13c06902dfdd5a6e3fd9885903865e?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/ab973bc4bd1673c43d45de5633a624d9ad13c06902dfdd5a6e3fd9885903865e?s=96&d=mm&r=g\",\"caption\":\"Stratos Matzouranis\"},\"sameAs\":[\"https:\\\/\\\/www.dataplatform.gr\"],\"url\":\"https:\\\/\\\/www.dataplatform.gr\\\/en\\\/author\\\/stratos-matzouranis\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"\u03a0\u03ce\u03c2 \u03bc\u03c0\u03bf\u03c1\u03bf\u03cd\u03bc\u03b5 \u03bd\u03b1 \u03b5\u03be\u03ac\u03b3\u03bf\u03c5\u03bc\u03b5 \u03ba\u03b1\u03b8\u03b7\u03bc\u03b5\u03c1\u03b9\u03bd\u03ac \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03b1\u03c0\u03cc \u03c4\u03bf\u03bd SQL Server \u03c3\u03b5 Excel \u03ba\u03b1\u03b9 \u03bd\u03b1 \u03c4\u03b1 \u03c3\u03c4\u03ad\u03bb\u03bd\u03bf\u03c5\u03bc\u03b5 \u03bc\u03b5 email - DataPlatform.gr","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.dataplatform.gr\/en\/pos-mporoyme-na-exagoyme-kathimerina-d\/","og_locale":"en_US","og_type":"article","og_title":"\u03a0\u03ce\u03c2 \u03bc\u03c0\u03bf\u03c1\u03bf\u03cd\u03bc\u03b5 \u03bd\u03b1 \u03b5\u03be\u03ac\u03b3\u03bf\u03c5\u03bc\u03b5 \u03ba\u03b1\u03b8\u03b7\u03bc\u03b5\u03c1\u03b9\u03bd\u03ac \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03b1\u03c0\u03cc \u03c4\u03bf\u03bd SQL Server \u03c3\u03b5 Excel \u03ba\u03b1\u03b9 \u03bd\u03b1 \u03c4\u03b1 \u03c3\u03c4\u03ad\u03bb\u03bd\u03bf\u03c5\u03bc\u03b5 \u03bc\u03b5 email - DataPlatform.gr","og_description":"\u03a3\u03c4\u03b9\u03c2 \u03ba\u03b1\u03b8\u03b7\u03bc\u03b5\u03c1\u03b9\u03bd\u03ad\u03c2 \u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b5\u03c2 \u03c4\u03c9\u03bd \u03b5\u03c4\u03b1\u03b9\u03c1\u03b9\u03ce\u03bd \u03b5\u03af\u03bd\u03b1\u03b9 \u03c3\u03c5\u03c7\u03bd\u03ae \u03b1\u03bd\u03ac\u03b3\u03ba\u03b7 \u03bd\u03b1 \u03c0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03b5\u03be\u03ac\u03b3\u03bf\u03bd\u03c4\u03b1\u03b9 \u03ba\u03b1\u03b8\u03b7\u03bc\u03b5\u03c1\u03b9\u03bd\u03ac \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03b1\u03c0\u03cc \u03c4\u03b7 \u03b2\u03ac\u03c3\u03b7 \u03ba\u03b1\u03b9 \u03bd\u03b1 \u03b4\u03af\u03bd\u03bf\u03bd\u03c4\u03b1\u03b9 \u03c3\u03b5 \u03ba\u03ac\u03c0\u03bf\u03b9\u03bf Excel. \u03a3\u03b5 \u03b1\u03c5\u03c4\u03ac \u03c4\u03b1 Excel \u03c3\u03c5\u03bd\u03ae\u03b8\u03c9\u03c2 \u03b8\u03ad\u03bb\u03bf\u03c5\u03bc\u03b5 \u03bd\u03b1 \u03ad\u03c7\u03bf\u03c5\u03bc\u03b5 \u03ba\u03ac\u03c0\u03bf\u03b9\u03bf \u03c3\u03c5\u03b3\u03ba\u03b5\u03ba\u03c1\u03b9\u03bc\u03ad\u03bd\u03bf \u03cc\u03bd\u03bf\u03bc\u03b1 \u03bc\u03b1\u03b6\u03af \u03bc\u03b5 \u03b7\u03bc\u03b5\u03c1\u03bf\u03bc\u03b7\u03bd\u03af\u03b1 \u03ba\u03b1\u03b9 \u03bd\u03b1 \u03b1\u03c0\u03bf\u03b8\u03b7\u03ba\u03b5\u03cd\u03bf\u03bd\u03c4\u03b1\u03b9 \u03c3\u03b5 \u03c3\u03c5\u03b3\u03ba\u03b5\u03ba\u03c1\u03b9\u03bc\u03ad\u03bd\u03bf path. \u03a0\u03bf\u03bb\u03cd \u03c7\u03c1\u03ae\u03c3\u03b9\u03bc\u03bf \u03b5\u03af\u03bd\u03b1\u03b9 \u03bd\u03b1 \u03c3\u03c4\u03ad\u03bb\u03bd\u03bf\u03bd\u03c4\u03b1\u03b9 \u03b1\u03c5\u03c4\u03ac \u03c4\u03b1 Excel \u03b1\u03c0\u03b5\u03c5\u03b8\u03b5\u03af\u03b1\u03c2 \u03bc\u03b5 email \u03b1\u03c0\u03cc [&hellip;]","og_url":"https:\/\/www.dataplatform.gr\/en\/pos-mporoyme-na-exagoyme-kathimerina-d\/","og_site_name":"DataPlatform.gr","article_publisher":"https:\/\/www.facebook.com\/dataplatform.gr\/","article_published_time":"2023-02-15T04:00:00+00:00","article_modified_time":"2025-07-20T10:52:30+00:00","og_image":[{"width":1280,"height":720,"url":"https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2020\/06\/dp_excel_sqlserver.png","type":"image\/png"}],"author":"Stratos Matzouranis","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Stratos Matzouranis","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.dataplatform.gr\/pos-mporoyme-na-exagoyme-kathimerina-d\/#article","isPartOf":{"@id":"https:\/\/www.dataplatform.gr\/pos-mporoyme-na-exagoyme-kathimerina-d\/"},"author":{"name":"Stratos Matzouranis","@id":"https:\/\/www.dataplatform.gr\/#\/schema\/person\/e87bf4fd02b65cb6aa0942f87245bbaf"},"headline":"\u03a0\u03ce\u03c2 \u03bc\u03c0\u03bf\u03c1\u03bf\u03cd\u03bc\u03b5 \u03bd\u03b1 \u03b5\u03be\u03ac\u03b3\u03bf\u03c5\u03bc\u03b5 \u03ba\u03b1\u03b8\u03b7\u03bc\u03b5\u03c1\u03b9\u03bd\u03ac \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03b1\u03c0\u03cc \u03c4\u03bf\u03bd SQL Server \u03c3\u03b5 Excel \u03ba\u03b1\u03b9 \u03bd\u03b1 \u03c4\u03b1 \u03c3\u03c4\u03ad\u03bb\u03bd\u03bf\u03c5\u03bc\u03b5 \u03bc\u03b5 email","datePublished":"2023-02-15T04:00:00+00:00","dateModified":"2025-07-20T10:52:30+00:00","mainEntityOfPage":{"@id":"https:\/\/www.dataplatform.gr\/pos-mporoyme-na-exagoyme-kathimerina-d\/"},"wordCount":99,"commentCount":4,"publisher":{"@id":"https:\/\/www.dataplatform.gr\/#organization"},"image":{"@id":"https:\/\/www.dataplatform.gr\/pos-mporoyme-na-exagoyme-kathimerina-d\/#primaryimage"},"thumbnailUrl":"https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2020\/06\/dp_excel_sqlserver.png","keywords":["Data Analysis","Databases","Excel","Microsoft","RDBMS","Reporting","SQL Server"],"articleSection":["Business Intelligence","Databases","Microsoft Excel","Microsoft SQL Server"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.dataplatform.gr\/pos-mporoyme-na-exagoyme-kathimerina-d\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.dataplatform.gr\/pos-mporoyme-na-exagoyme-kathimerina-d\/","url":"https:\/\/www.dataplatform.gr\/pos-mporoyme-na-exagoyme-kathimerina-d\/","name":"\u03a0\u03ce\u03c2 \u03bc\u03c0\u03bf\u03c1\u03bf\u03cd\u03bc\u03b5 \u03bd\u03b1 \u03b5\u03be\u03ac\u03b3\u03bf\u03c5\u03bc\u03b5 \u03ba\u03b1\u03b8\u03b7\u03bc\u03b5\u03c1\u03b9\u03bd\u03ac \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03b1\u03c0\u03cc \u03c4\u03bf\u03bd SQL Server \u03c3\u03b5 Excel \u03ba\u03b1\u03b9 \u03bd\u03b1 \u03c4\u03b1 \u03c3\u03c4\u03ad\u03bb\u03bd\u03bf\u03c5\u03bc\u03b5 \u03bc\u03b5 email - DataPlatform.gr","isPartOf":{"@id":"https:\/\/www.dataplatform.gr\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.dataplatform.gr\/pos-mporoyme-na-exagoyme-kathimerina-d\/#primaryimage"},"image":{"@id":"https:\/\/www.dataplatform.gr\/pos-mporoyme-na-exagoyme-kathimerina-d\/#primaryimage"},"thumbnailUrl":"https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2020\/06\/dp_excel_sqlserver.png","datePublished":"2023-02-15T04:00:00+00:00","dateModified":"2025-07-20T10:52:30+00:00","breadcrumb":{"@id":"https:\/\/www.dataplatform.gr\/pos-mporoyme-na-exagoyme-kathimerina-d\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.dataplatform.gr\/pos-mporoyme-na-exagoyme-kathimerina-d\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.dataplatform.gr\/pos-mporoyme-na-exagoyme-kathimerina-d\/#primaryimage","url":"https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2020\/06\/dp_excel_sqlserver.png","contentUrl":"https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2020\/06\/dp_excel_sqlserver.png","width":1280,"height":720},{"@type":"BreadcrumbList","@id":"https:\/\/www.dataplatform.gr\/pos-mporoyme-na-exagoyme-kathimerina-d\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\u0391\u03c1\u03c7\u03b9\u03ba\u03ae","item":"https:\/\/www.dataplatform.gr\/"},{"@type":"ListItem","position":2,"name":"Databases","item":"https:\/\/www.dataplatform.gr\/category\/databases\/"},{"@type":"ListItem","position":3,"name":"Microsoft SQL Server","item":"https:\/\/www.dataplatform.gr\/category\/databases\/ms-sqlserver\/"},{"@type":"ListItem","position":4,"name":"\u03a0\u03ce\u03c2 \u03bc\u03c0\u03bf\u03c1\u03bf\u03cd\u03bc\u03b5 \u03bd\u03b1 \u03b5\u03be\u03ac\u03b3\u03bf\u03c5\u03bc\u03b5 \u03ba\u03b1\u03b8\u03b7\u03bc\u03b5\u03c1\u03b9\u03bd\u03ac \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03b1\u03c0\u03cc \u03c4\u03bf\u03bd SQL Server \u03c3\u03b5 Excel \u03ba\u03b1\u03b9 \u03bd\u03b1 \u03c4\u03b1 \u03c3\u03c4\u03ad\u03bb\u03bd\u03bf\u03c5\u03bc\u03b5 \u03bc\u03b5 email"}]},{"@type":"WebSite","@id":"https:\/\/www.dataplatform.gr\/#website","url":"https:\/\/www.dataplatform.gr\/","name":"dataplatform.gr - Sky is not the limit!","description":"\u0398\u03b5\u03c9\u03c1\u03af\u03b1, \u03bf\u03b4\u03b7\u03b3\u03bf\u03af \u03ba\u03b1\u03b9 \u03c3\u03ba\u03ad\u03c8\u03b5\u03b9\u03c2 \u03b3\u03b9\u03b1 \u03bd\u03b1 \u03ba\u03ac\u03bd\u03b5\u03c4\u03b5 \u03c4\u03b7 \u03b4\u03bf\u03c5\u03bb\u03b5\u03b9\u03ac \u03c3\u03b1\u03c2 \u03c0\u03b9\u03bf \u03c0\u03b1\u03c1\u03b1\u03b3\u03c9\u03b3\u03b9\u03ba\u03ac \u03ba\u03b1\u03b9 \u03c0\u03b9\u03bf \u03b5\u03cd\u03ba\u03bf\u03bb\u03b1 \u03c0\u03ac\u03bd\u03c9 \u03c3\u03c4\u03b9\u03c2 \u03b2\u03ac\u03c3\u03b5\u03b9\u03c2 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03c9\u03bd, \u03c3\u03c4\u03b7\u03bd SQL, \u03c3\u03c4\u03bf Business Intelligence \u03ba\u03b1\u03b9 \u03c3\u03c4\u03b1 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03b3\u03b5\u03bd\u03b9\u03ba\u03cc\u03c4\u03b5\u03c1\u03b1.","publisher":{"@id":"https:\/\/www.dataplatform.gr\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.dataplatform.gr\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.dataplatform.gr\/#organization","name":"dataplatform.gr","url":"https:\/\/www.dataplatform.gr\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.dataplatform.gr\/#\/schema\/logo\/image\/","url":"https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2020\/06\/dp_logo_wbacki.png","contentUrl":"https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2020\/06\/dp_logo_wbacki.png","width":322,"height":139,"caption":"dataplatform.gr"},"image":{"@id":"https:\/\/www.dataplatform.gr\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/dataplatform.gr\/","https:\/\/www.linkedin.com\/company\/dataplatform-gr\/"]},{"@type":"Person","@id":"https:\/\/www.dataplatform.gr\/#\/schema\/person\/e87bf4fd02b65cb6aa0942f87245bbaf","name":"Stratos Matzouranis","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/ab973bc4bd1673c43d45de5633a624d9ad13c06902dfdd5a6e3fd9885903865e?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/ab973bc4bd1673c43d45de5633a624d9ad13c06902dfdd5a6e3fd9885903865e?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/ab973bc4bd1673c43d45de5633a624d9ad13c06902dfdd5a6e3fd9885903865e?s=96&d=mm&r=g","caption":"Stratos Matzouranis"},"sameAs":["https:\/\/www.dataplatform.gr"],"url":"https:\/\/www.dataplatform.gr\/en\/author\/stratos-matzouranis\/"}]}},"_links":{"self":[{"href":"https:\/\/www.dataplatform.gr\/en\/wp-json\/wp\/v2\/posts\/2884","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.dataplatform.gr\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.dataplatform.gr\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.dataplatform.gr\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.dataplatform.gr\/en\/wp-json\/wp\/v2\/comments?post=2884"}],"version-history":[{"count":4,"href":"https:\/\/www.dataplatform.gr\/en\/wp-json\/wp\/v2\/posts\/2884\/revisions"}],"predecessor-version":[{"id":5931,"href":"https:\/\/www.dataplatform.gr\/en\/wp-json\/wp\/v2\/posts\/2884\/revisions\/5931"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.dataplatform.gr\/en\/wp-json\/wp\/v2\/media\/695"}],"wp:attachment":[{"href":"https:\/\/www.dataplatform.gr\/en\/wp-json\/wp\/v2\/media?parent=2884"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.dataplatform.gr\/en\/wp-json\/wp\/v2\/categories?post=2884"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.dataplatform.gr\/en\/wp-json\/wp\/v2\/tags?post=2884"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}