<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>SQL SERVER &gt; Metasys Software Pvt Ltd.</title>
	<atom:link href="https://ikfstage.metasyssoftware.com/tag/sql-server/feed/" rel="self" type="application/rss+xml" />
	<link>https://ikfstage.metasyssoftware.com</link>
	<description></description>
	<lastBuildDate>Fri, 22 Jul 2022 12:01:30 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>
	<item>
		<title>How to use a Database project in .NET Visual Studio?</title>
		<link>https://ikfstage.metasyssoftware.com/dotnetsqlproject/</link>
		
		<dc:creator><![CDATA[meta_prasad]]></dc:creator>
		<pubDate>Tue, 23 Mar 2021 07:47:42 +0000</pubDate>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Microsoft Technologies]]></category>
		<category><![CDATA[Visual Studio]]></category>
		<category><![CDATA[SQL SERVER]]></category>
		<category><![CDATA[dot net development company]]></category>
		<category><![CDATA[dot net programmer]]></category>
		<category><![CDATA[Dot Net developers]]></category>
		<category><![CDATA[Net developer]]></category>
		<category><![CDATA[Dot Net application development]]></category>
		<guid isPermaLink="false">https://development.ikf.in/metasys1/?p=3502</guid>

					<description><![CDATA[<p>Introduction The Database plays a vital role in any web or windows application development. The Database project can be used to maintain the repository of the schema changes. Why do we need a Database project? While developing any application, the developer has to work on many database tasks such as creating tables, triggers, stored procedures, &#8230;</p>
<p class="read-more"> <a class="" href="https://ikfstage.metasyssoftware.com/dotnetsqlproject/"> <span class="screen-reader-text">How to use a Database project in .NET Visual Studio?</span> Read More &#187;</a></p>
The post <a href="https://ikfstage.metasyssoftware.com/dotnetsqlproject/">How to use a Database project in .NET Visual Studio?</a> appeared first on <a href="https://ikfstage.metasyssoftware.com">Metasys Software Pvt Ltd.</a>.]]></description>
										<content:encoded><![CDATA[<p><strong>Introduction</strong></p>
<p>The Database plays a vital role in any web or windows application development. The Database project can be used to maintain the repository of the schema changes.</p>
<h2><strong>Why do we need a Database project?</strong></h2>
<p>While developing any application, the developer has to work on many database tasks such as creating tables, triggers, stored procedures, functions, etc. It is difficult to manage the scripts at the time of deployment. Also, it is tedious to review the changes made by the developer during development. The database project in Visual studio addresses these issues.</p>
<h2><strong>How to create a database project?</strong></h2>
<ol>
<li>Create a new project in visual studio. Select the <a href="https://development.ikf.in/metasys1/php-mysql">SQL Server</a> Database Project, as shown below.</li>
</ol>
<p><img fetchpriority="high" decoding="async" class="aligncenter wp-image-3503 size-full" title="New project " src="https://development.ikf.in/metasys1/wp-content/uploads/New-project-1.png" alt="New project " width="601" height="343" /></p>
<p>2. Right-click on the project and select Import????Database</p>
<p><img decoding="async" class="aligncenter wp-image-3504 size-full" title="Importing database " src="https://development.ikf.in/metasys1/wp-content/uploads/Importing-database-2.png" alt="Importing database " width="601" height="624" /></p>
<p>3. After this, you get one popup as follows. Click on ‘Select Connection…’ option to import the database.</p>
<p><img decoding="async" class="aligncenter wp-image-3505 size-full" title="Import database " src="https://development.ikf.in/metasys1/wp-content/uploads/Import-database-3.png" alt="Import database " width="601" height="497" /></p>
<p>4. You will receive another popup to select the connection properties of your database. After entering the credentials (and authenticating successfully), you will get the dropdown filled with a list of databases on  the SQL server. Select the database for which you are creating the project.</p>
<p><img loading="lazy" decoding="async" class="aligncenter wp-image-3506 size-full" title="Connection properties " src="https://development.ikf.in/metasys1/wp-content/uploads/Connection-properties-4.png" alt="Connection properties " width="495" height="597" /></p>
<p>5. Once you click on ‘Connect’, you will notice all the tables, procedures, functions, etc. which will get imported.</p>
<p><img loading="lazy" decoding="async" class="aligncenter wp-image-3507 size-full" title="Import database summary " src="https://development.ikf.in/metasys1/wp-content/uploads/Import-database-summary-5.png" alt="Import database summary " width="603" height="501" /></p>
<p>6. Check solution explorer for your database related artefacts.</p>
<p><img loading="lazy" decoding="async" class="aligncenter wp-image-3508 size-full" title="Solution explorer " src="https://development.ikf.in/metasys1/wp-content/uploads/Solution-explorer-6.png" alt="Solution explorer " width="363" height="555" /></p>
<p>7. Now compare your project schema with the database schema after performing modifications to the database. Right-click on the solution and select Schema compare, as shown below.</p>
<p><img loading="lazy" decoding="async" class="aligncenter wp-image-3509 size-full" title="Database demo " src="https://development.ikf.in/metasys1/wp-content/uploads/Database-demo-7.png" alt="Database demo " width="601" height="339" /></p>
<p>As you can see in the above image, there are two sections Source and Target.</p>
<p>Source: If you have made any changes in the database and you want to compare those on the target, then select the database name. If however, you have made changes in the database project that you want to compare with the database, then select your project path.</p>
<p>Target: It will always be with the source which will be compared. If you want, you can swap Source and Target. Once selected, click on ‘Compare’ to compare Source and Target schemas.</p>
<p>8. For example, I have added the Enquiry table in the database; Clicking on Compare allows you to see a list of modifications.</p>
<p><img loading="lazy" decoding="async" class="aligncenter wp-image-3510 size-full" title="Database demo 8" src="https://development.ikf.in/metasys1/wp-content/uploads/Database-demo-8.png" alt="Database demo 8" width="602" height="338" /></p>
<p>The Action column in the above image is displayed if the changes are new or if there are any updates or deletions in the schema.</p>
<p>When you check the box and click on ‘Update’, all the changes will be applied to Target.</p>
<p>9. Now if you have made any changes in the database project and you want to execute those on the Production UAT database, then execute it in the same way as shown above.</p>
<p>10. In order to create the scripts for the changes, then compare the Database project with the Target Database. Then click on ‘Generate Scripts’.</p>
<h2><strong>Merits and Demerits of Database Project:</strong></h2>
<h3><strong>Merits:</strong></h3>
<ol>
<li>DDL (Data Definition Language) is readily available for all the objects.</li>
<li>Deployment scripts can be easily generated.</li>
<li>A database project also includes designers for working with these files.</li>
<li>Version control can be done for the database through a series of check-in and check-outs for various operations performed on scripts and schema changes.</li>
<li><span style="font-size: 1rem;">Reviewing database changes is easier and allows  <a href="https://development.ikf.in/metasys1/dot-net-development/">Dot Net developers </a></span><span style="font-size: 1rem;">to be more effective in terms of making changes and reviewing previous modifications done by team members.</span></li>
</ol>
<h3><strong>Demerits:</strong></h3>
<ol>
<li>Schema designing is not available.</li>
<li>References to external database sources cannot be created in the database project.</li>
<li>The Visual studio database project only supports the SQL Server.</li>
</ol>The post <a href="https://ikfstage.metasyssoftware.com/dotnetsqlproject/">How to use a Database project in .NET Visual Studio?</a> appeared first on <a href="https://ikfstage.metasyssoftware.com">Metasys Software Pvt Ltd.</a>.]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Power BI – A Visualization Tool which is easy to understand and develop</title>
		<link>https://ikfstage.metasyssoftware.com/power-bi-a-visualization-tool-which-is-easy-to-understand-and-develop/</link>
					<comments>https://ikfstage.metasyssoftware.com/power-bi-a-visualization-tool-which-is-easy-to-understand-and-develop/#respond</comments>
		
		<dc:creator><![CDATA[meta_prasad]]></dc:creator>
		<pubDate>Fri, 20 Nov 2020 13:01:05 +0000</pubDate>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Microsoft Technologies]]></category>
		<category><![CDATA[Custom Software solutions]]></category>
		<category><![CDATA[bespoke software development]]></category>
		<category><![CDATA[Custom software development]]></category>
		<category><![CDATA[SQL SERVER]]></category>
		<category><![CDATA[Power BI]]></category>
		<guid isPermaLink="false">http://stage.metasyssoftware.com/?p=3445</guid>

					<description><![CDATA[<p>Power BI is a tool used for generating business intelligence reports, charts and graphs, that incorporate easy to understand visuals. It is a self-service BI tool that is particularly useful for data analysts who create and distribute BI reports throughout the organization. With moderate knowledge of SQL, one can develop simple power BI visuals after &#8230;</p>
<p class="read-more"> <a class="" href="https://ikfstage.metasyssoftware.com/power-bi-a-visualization-tool-which-is-easy-to-understand-and-develop/"> <span class="screen-reader-text">Power BI – A Visualization Tool which is easy to understand and develop</span> Read More &#187;</a></p>
The post <a href="https://ikfstage.metasyssoftware.com/power-bi-a-visualization-tool-which-is-easy-to-understand-and-develop/">Power BI – A Visualization Tool which is easy to understand and develop</a> appeared first on <a href="https://ikfstage.metasyssoftware.com">Metasys Software Pvt Ltd.</a>.]]></description>
										<content:encoded><![CDATA[<p>Power BI is a tool used for generating business intelligence reports, charts and graphs, that incorporate easy to understand visuals. It is a self-service BI tool that is particularly useful for data analysts who create and distribute BI reports throughout the organization. With moderate knowledge of SQL, one can develop simple power BI visuals after only very basic training.</p>
<p>The first important point is that it is essential to determine the <strong>Storage mode</strong> before starting to develop any power BI report. Storage modes that can be used for accessing the data can include:</p>
<ol>
<li>Import mode</li>
<li>DirectQuery mode</li>
<li>LiveConnect mode</li>
<li>Push mode</li>
</ol>
<p>My experience in developing a power BI report increased quickly, as I started by developing a very simple report and ended up learning a huge amount about more advanced elements of Power BI as the project requirements changed.</p>
<p>In the beginning, it was exciting to work on the first simple power BI report, which I developed using a database like SQL Server and Storage mode as Import.</p>
<p><img loading="lazy" decoding="async" class="aligncenter wp-image-3245 size-full" title="PowerBI 1" src="https://development.ikf.in/metasys1/wp-content/uploads/2022/07/PowerBI_1.png" alt="PowerBI 1" width="602" height="353" /></p>
<p>As shown above, the visualisation was for a count of orders for the time period indicated by the date slider. The stacked column chart on the right shows the orders based on service type on a yearly basis. The visualisation can be done for any date hierarchy including daily, weekly, monthly, quarterly and yearly. In the pie chart on the left, the total orders are shown as both a total count and a percentage breakdown. As specifically requested by the client, we also added a reset button to restore the initially selected filters values.</p>
<p>Later on, during the deployment phase, we had to search for an <strong>on-premises data gateway</strong> to maintain the continuous connection with the data relying on the SQL server. We installed the on-premises data gateway on our database server connecting to the datasets created on the Power BI portal as shown below:</p>
<p><img loading="lazy" decoding="async" class="aligncenter wp-image-3246" title="Datasets 2" src="https://development.ikf.in/metasys1/wp-content/uploads/2022/07/PowerBI_2.png" alt="Datasets 2" width="708" height="361" /></p>
<p>We maintained daily refresh schedule as shown below:</p>
<p><img loading="lazy" decoding="async" class="wp-image-3247 aligncenter" title="Scheduled Cache refreshing 3" src="https://development.ikf.in/metasys1/wp-content/uploads/2022/07/PowerBI_3.png" alt="Scheduled Cache refreshing 3" width="820" height="417" /></p>
<p>After deploying this report to production, the client requested a live report that showed current statistics without needing a page refresh. After some research I found that <strong>automatic page refresh</strong> can be achieved using the <strong>DirectQuery</strong> Storage mode. Unfortunately, my report was developed using the <strong>Import</strong> mode. This is when I learned the hard way that choosing the right storage mode from the beginning is very important, as I had to recreate the whole report using the <strong>DirectQuery</strong> storage mode. Meeting the clients&#8217; needs required converting the storage mode to Direct Query, recreating the report and setting the automatic page refresh option to 5 seconds.</p>
<p><img loading="lazy" decoding="async" class="aligncenter wp-image-3248" title="Orders 4" src="https://development.ikf.in/metasys1/wp-content/uploads/2022/07/PowerBI_4.png" alt="Orders 4" width="820" height="468" /></p>
<p>We can develop a variety of reports using the Visualization options as shown in the image below.</p>
<p><img loading="lazy" decoding="async" class="aligncenter wp-image-3249" title="Visualization option 5" src="https://development.ikf.in/metasys1/wp-content/uploads/2022/07/PowerBI_5.png" alt="Visualization option 5" width="898" height="442" /></p>
<p>We can even use visuals other than those available in the Visualization pane, such as the <strong>Search tool</strong> shown below:</p>
<p><img loading="lazy" decoding="async" class="aligncenter wp-image-3250" title="Search tool 6" src="https://development.ikf.in/metasys1/wp-content/uploads/2022/07/PowerBI_6.png" alt="Search tool 6" width="830" height="420" /></p>
<p>At <a href="https://development.ikf.in/metasys1/dot-net">MetaSys</a>, we  are focused on investing time into new and innovative projects like Power BI, to meet our clients’ needs.</p>
<p>For more information refer to  <a href="https://development.ikf.in/metasys1/contact">https://development.ikf.in/metasys1/contact</a></p>The post <a href="https://ikfstage.metasyssoftware.com/power-bi-a-visualization-tool-which-is-easy-to-understand-and-develop/">Power BI – A Visualization Tool which is easy to understand and develop</a> appeared first on <a href="https://ikfstage.metasyssoftware.com">Metasys Software Pvt Ltd.</a>.]]></content:encoded>
					
					<wfw:commentRss>https://ikfstage.metasyssoftware.com/power-bi-a-visualization-tool-which-is-easy-to-understand-and-develop/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>InBody Integration for biometric and blood pressure data into a web application</title>
		<link>https://ikfstage.metasyssoftware.com/inbody-integration-for-biometric-and-blood-pressure-data-into-a-web-application/</link>
					<comments>https://ikfstage.metasyssoftware.com/inbody-integration-for-biometric-and-blood-pressure-data-into-a-web-application/#respond</comments>
		
		<dc:creator><![CDATA[meta_prasad]]></dc:creator>
		<pubDate>Fri, 24 Apr 2020 13:47:13 +0000</pubDate>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Microsoft Technologies]]></category>
		<category><![CDATA[web application development]]></category>
		<category><![CDATA[Dot Net application development]]></category>
		<category><![CDATA[SQL SERVER]]></category>
		<category><![CDATA[ASP web application]]></category>
		<category><![CDATA[Inbody integration]]></category>
		<category><![CDATA[Dot Net Framework]]></category>
		<category><![CDATA[Web designing and application development]]></category>
		<category><![CDATA[Dot Net application]]></category>
		<guid isPermaLink="false">https://development.ikf.in/metasys1/?p=3049</guid>

					<description><![CDATA[<p>People today are more health-conscious than ever before, and digital technology is playing an important role in this development. Thanks to modern technology, there are many tools and devices to measure and record physical characteristics that relate to personal health. Tracking exercise routines and nutrition has become a popular tool for individuals to keep up &#8230;</p>
<p class="read-more"> <a class="" href="https://ikfstage.metasyssoftware.com/inbody-integration-for-biometric-and-blood-pressure-data-into-a-web-application/"> <span class="screen-reader-text">InBody Integration for biometric and blood pressure data into a web application</span> Read More &#187;</a></p>
The post <a href="https://ikfstage.metasyssoftware.com/inbody-integration-for-biometric-and-blood-pressure-data-into-a-web-application/">InBody Integration for biometric and blood pressure data into a web application</a> appeared first on <a href="https://ikfstage.metasyssoftware.com">Metasys Software Pvt Ltd.</a>.]]></description>
										<content:encoded><![CDATA[<p><span style="font-weight: 400;"><img loading="lazy" decoding="async" class="alignnone size-full wp-image-3084" src="https://development.ikf.in/metasys1/wp-content/uploads/blue-and-silver-stetoscope-40568-1.jpg" alt="Inbody integration with web app" width="1280" height="853" />People today are more health-conscious than ever before, and digital technology is playing an important role in this development. Thanks to modern technology, there are many tools and devices to measure and record physical characteristics that relate to personal health. Tracking exercise routines and nutrition has become a popular tool for individuals to keep up a healthy lifestyle. Many health-related online platforms, applications and tools are available for individuals, and integration of such tracking devices can improve their service. </span></p>
<p><span style="font-weight: 400;">This article details such an integration project. Our Dot Net application team helped a client integrate InBody technology into their application. </span></p>
<p><span style="font-weight: 400;">InBody devices offer detailed measurement of body composition balance, including key health factors such as protein, minerals, BMI and body fat percentage. Our project revolved around integrating the InBody 570 device with a </span><span style="font-weight: 400;">.Net application</span><span style="font-weight: 400;">. The solution we implemented involved the </span><span style="font-weight: 400;">.Net application</span><span style="font-weight: 400;"> listening to the serial ports attached to the device for the duration of the test. After receiving a data stream from the InBody device, relevant data is extracted using indices of specific data factors mentioned in the InBody 570 technical documentation. Key settings required by the .Net application include baud rate, parity, data bits, and stop bits. The InBody technical specification includes more details about the values of these settings.  Once the data stream is received, and the data factors are extracted, the data was saved in an SQL server database. The .Net web application reads this data from the SQL server database and displays it to the user. </span></p>
<p><b>Key Challenges</b></p>
<p><span style="font-weight: 400;">The idea is that the application can be used by the fitness facility subscribing to the application and having an InBody machine. The application runs on a laptop or desktop computer connected to the Inbody machine. However, one challenge was that there is no guarantee that the computer is always connected using the same port. If the computer had more than one port on which the device stream can be received, then we had to lock and keep listening to all available ports. Our solution to these issues was to program the app to lock and keep listening to all available and open ports of the laptop and as soon as we receive either data stream or exception, we unlock all ports locked by the .net application. It is important to note that only that process which has locked the serial port can unlock it, no other process can forcibly remove that lock. In the event that the process which locked the port gets terminated, one is left with only the option of system reboot in order to unlock that port.</span></p>
<p><span style="font-weight: 400;">Another issue is that the same app was required to integrate with another measurement device manufactured by InBody, the BPBIO 320. This device reads systolic blood pressure, diastolic blood pressure and pulse, and we modified the .Net app to work with both InBody devices. We used a condition-based code, which looks at application settings and accordingly saves the data in either the production or the staging environment. The BPBIO 320 requires a different baud rate to that of InBody 570, therefore we adapted the application so that the user enters the test type, and then the baud rate is automatically set up by the software. We also process information contained within the data stream that indicates status such as “Measurement started”, “Measurement interrupted due to use of the stop button”, and “Measurement interrupted due to error”.  These cases are handled in the application and clear information is passed on to the user.  </span></p>
<p><span style="font-weight: 400;">We used a PuTTY tool to simulate the device stream in the development environment, as the physical device was not always available. Device testing was performed after development was complete, and we made the necessary changes to the application before the launch.</span></p>
<p><span style="font-weight: 400;">We will be glad to help anyone interested in doing similar kinds of integrations in their software. For more info </span><a href="https://development.ikf.in/metasys1/case-study-dotnet"><span style="font-weight: 400;">https://development.ikf.in/metasys1/case-study-dotnet</span></a></p>The post <a href="https://ikfstage.metasyssoftware.com/inbody-integration-for-biometric-and-blood-pressure-data-into-a-web-application/">InBody Integration for biometric and blood pressure data into a web application</a> appeared first on <a href="https://ikfstage.metasyssoftware.com">Metasys Software Pvt Ltd.</a>.]]></content:encoded>
					
					<wfw:commentRss>https://ikfstage.metasyssoftware.com/inbody-integration-for-biometric-and-blood-pressure-data-into-a-web-application/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>SQL Server on Linux!? – Meet SQL Server 2017</title>
		<link>https://ikfstage.metasyssoftware.com/sql-server-linux-meet-sql-server-2017/</link>
					<comments>https://ikfstage.metasyssoftware.com/sql-server-linux-meet-sql-server-2017/#respond</comments>
		
		<dc:creator><![CDATA[meta_prasad]]></dc:creator>
		<pubDate>Mon, 31 Jul 2017 08:46:10 +0000</pubDate>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Microsoft Technologies]]></category>
		<category><![CDATA[SQL SERVER]]></category>
		<category><![CDATA[php mysql web application development india]]></category>
		<category><![CDATA[LINUX]]></category>
		<category><![CDATA[APACHE]]></category>
		<category><![CDATA[HADOOP]]></category>
		<category><![CDATA[BIG DATA]]></category>
		<category><![CDATA[SQL DATABASES]]></category>
		<category><![CDATA[SQL SERVER 2017 RC1]]></category>
		<category><![CDATA[RED HAT SERVER]]></category>
		<category><![CDATA[FileMaker/PHP/MySQL]]></category>
		<category><![CDATA[SUSE LINUX]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[UBUNTU LINUX]]></category>
		<category><![CDATA[PYTHON]]></category>
		<guid isPermaLink="false">http://192.168.2.73:8080/metasyssoftware/?p=1679</guid>

					<description><![CDATA[<p>Over the last decade, DATA is the NEW OIL. While the increasing amount of digitization has led to data exploding exponentially, several other factors have also contributed. The cost of data storage has dropped substantially; enterprises are unwilling to delete any of their data. DATA is now a Corporate Asset and archived NOT deleted. In &#8230;</p>
<p class="read-more"> <a class="" href="https://ikfstage.metasyssoftware.com/sql-server-linux-meet-sql-server-2017/"> <span class="screen-reader-text">SQL Server on Linux!? – Meet SQL Server 2017</span> Read More &#187;</a></p>
The post <a href="https://ikfstage.metasyssoftware.com/sql-server-linux-meet-sql-server-2017/">SQL Server on Linux!? – Meet SQL Server 2017</a> appeared first on <a href="https://ikfstage.metasyssoftware.com">Metasys Software Pvt Ltd.</a>.]]></description>
										<content:encoded><![CDATA[<p>Over the last decade, DATA is the NEW OIL. While the increasing amount of digitization has led to data exploding exponentially, several other factors have also contributed. The cost of data storage has dropped substantially; enterprises are unwilling to delete any of their data. DATA is now a Corporate Asset and archived NOT deleted.<br />
In the “Always On-Line” world all the systems accumulate huge amounts of data in real time. Analysts &amp; experts want to analyze these mountains of data, popularly known as “Big Data”. The world today believes that in order to prosper and grow, they have to have the ability to “spot” emerging trends and patterns before they become mainstream.<br />
This has led to a spectacular increase in the use of the Apache Hadoop Linux platform for Analytics. Data scientists across the world have been using this platform to manage and analyze “Big Data” since traditional SQL databases were not suitable in this environment.In the past, Microsoft provided interfaces to these technologies. To aid its own expansion and grab a market share in the emerging technologies Microsoft released R server for Hadoop &amp; Linux and included R services starting with SQL 2016. They are further fortifying this position with the launch of SQL 2017 RC1.<br />
Microsoft has introduced SQL Server 2017 RC1 which supports Linux. Interestingly Microsoft has chosen to support Red Hat Server &amp; Desktop, Suse Linux &amp; Ubuntu Linux flavors which cover most of the current installations. SQL server 2017 supports Linux and Active Directory services authentication for both Windows &amp; Linux domain clients, allowing authentication of users across different platforms.<br />
SQL server 2017 includes analytics using built-in Python &amp; R services! Microsoft has always focussed on security. SQL server 2017 has TLS support so the data between SQL Server &amp; clients can be always encrypted!<br />
Some the features are not supported in this release of SQL server as yet. You can find details of the Microsoft release notes <a href="https://docs.microsoft.com/en-us/sql/linux/sql-server-linux-release-notes" target="_blank" rel="noopener nofollow noreferrer">here</a>.<br />
MetaSys Software has been delivering high performance and secure database solutions using legacy SQL server version and recent undertakings are on SQL server 2016. If you are looking for web or database solutions, then please connect with us.</p>The post <a href="https://ikfstage.metasyssoftware.com/sql-server-linux-meet-sql-server-2017/">SQL Server on Linux!? – Meet SQL Server 2017</a> appeared first on <a href="https://ikfstage.metasyssoftware.com">Metasys Software Pvt Ltd.</a>.]]></content:encoded>
					
					<wfw:commentRss>https://ikfstage.metasyssoftware.com/sql-server-linux-meet-sql-server-2017/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
