You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/sql-database/import-export-from-vm.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -55,7 +55,7 @@ The following steps show you how to connect to your virtual machine using a remo
55
55
56
56
4. Close the **Connect to virtual machine** form.
57
57
5. To connect to your VM, open the downloaded RDP file.
58
-
6. When prompted, select **Connect**. On a Mac, you need an RDP client such as this [Remote Desktop Client](https://itunes.apple.com/us/app/microsoft-remote-desktop/id715768417?mt=12) from the Mac App Store.
58
+
6. When prompted, select **Connect**. On a Mac, you need an RDP client such as this [Remote Desktop Client](https://apps.apple.com/app/microsoft-remote-desktop-10/id1295203466?mt=12) from the Mac App Store.
59
59
60
60
7. Enter the username and password you specified when creating the virtual machine, then choose **OK**.
|http://events.wingtip-dpt| The events parts of the Wingtip app.<br /><br /> *-dpt* distinguishes the *database-per-tenant* implementation of Wingtip Tickets from other implementations. Examples are the *single* app-per-tenant (*-sa*) or *multitenant database* (*-mt*) implementations. |
125
+
| events.wingtip-dpt | The events parts of the Wingtip app.<br /><br /> *-dpt* distinguishes the *database-per-tenant* implementation of Wingtip Tickets from other implementations. Examples are the *single* app-per-tenant (*-sa*) or *multitenant database* (*-mt*) implementations. |
126
126
| .*<user>*|*af1* in the example. |
127
127
| .trafficmanager.net/ | Traffic Manager, base URL. |
128
128
| fabrikamjazzclub | Identifies the tenant named Fabrikam Jazz Club. |
Copy file name to clipboardExpand all lines: articles/sql-database/sql-database-develop-cplusplus-simple.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -22,10 +22,10 @@ Make sure you have the following items:
22
22
23
23
* An active Azure account. If you don't have one, you can sign up for a [Free Azure Trial](https://azure.microsoft.com/pricing/free-trial/).
24
24
*[Visual Studio](https://www.visualstudio.com/downloads/). You must install the C++ language components to build and run this sample.
25
-
*[Visual Studio Linux Development](https://visualstudiogallery.msdn.microsoft.com/725025cf-7067-45c2-8d01-1e0fd359ae6e). If you are developing on Linux, you must also install the Visual Studio Linux extension.
25
+
*[Visual Studio Linux Development](https://docs.microsoft.com/cpp/linux/?view=vs-2019). If you are developing on Linux, you must also install the Visual Studio Linux extension.
26
26
27
27
## <aid="AzureSQL"></a>Azure SQL Database and SQL Server on virtual machines
28
-
Azure SQL is built on Microsoft SQL Server and is designed to provide a high-availability, performant, and scalable service. There are many benefits to using SQL Azure over your proprietary database running on premises. With SQL Azure you don’t have to install, set up, maintain, or manage your database but only the content and the structure of your database. Typical things that we worry about with databases like fault tolerance and redundancy are all built in.
28
+
Azure SQL is built on Microsoft SQL Server and is designed to provide a high-availability, performant, and scalable service. There are many benefits to using SQL Azure over your proprietary database running on premises. With SQL Azure you don't have to install, set up, maintain, or manage your database but only the content and the structure of your database. Typical things that we worry about with databases like fault tolerance and redundancy are all built in.
29
29
30
30
Azure currently has two options for hosting SQL server workloads: Azure SQL database, database as a service and SQL server on Virtual Machines (VM). We will not get into detail about the differences between these two except that Azure SQL database is your best bet for new cloud-based applications to take advantage of the cost savings and performance optimization that cloud services provide. If you are considering migrating or extending your on-premises applications to the cloud, SQL server on Azure virtual machine might work out better for you. To keep things simple for this article, let's create an Azure SQL database.
31
31
@@ -71,7 +71,7 @@ Alternatively, you could create a DSN file using the wizard that is launched whe
71
71
Congratulations! You have now successfully connected to Azure SQL using C++ and ODBC on Windows. You can continue reading to do the same for Linux platform as well.
72
72
73
73
## <aid="Linux"></a>Step 5: Connecting from a Linux C/C++ application
74
-
In case you haven’t heard the news yet, Visual Studio now allows you to develop C++ Linux application as well. You can read about this new scenario in the [Visual C++ for Linux Development](https://blogs.msdn.microsoft.com/vcblog/20../../visual-c-for-linux-development/) blog. To build for Linux, you need a remote machine where your Linux distro is running. If you don’t have one available, you can set one up quickly using [Linux Azure Virtual machines](../virtual-machines/linux/quick-create-cli.md?toc=%2fazure%2fvirtual-machines%2flinux%2ftoc.json).
74
+
In case you haven't heard the news yet, Visual Studio now allows you to develop C++ Linux application as well. You can read about this new scenario in the [Visual C++ for Linux Development](https://blogs.msdn.microsoft.com/vcblog/20../../visual-c-for-linux-development/) blog. To build for Linux, you need a remote machine where your Linux distro is running. If you don't have one available, you can set one up quickly using [Linux Azure Virtual machines](../virtual-machines/linux/quick-create-cli.md?toc=%2fazure%2fvirtual-machines%2flinux%2ftoc.json).
75
75
76
76
For this tutorial, let us assume that you have an Ubuntu 16.04 Linux distribution set up. The steps here should also apply to Ubuntu 15.10, Red Hat 6, and Red Hat 7.
INNER JOIN DimProduct b ONb.ProductKey=a.ProductKey
337
337
INNER JOIN DimCustomer d ONd.CustomerKey=a.CustomerKey
@@ -350,13 +350,13 @@ SET STATISTICS IO ON
350
350
SET STATISTICS TIMEON
351
351
GO
352
352
SELECTc.Year
353
-
,e.ProductCategoryKey
354
-
,FirstName +''+ LastName AS FullName
355
-
,count(SalesOrderNumber) AS NumSales
356
-
,sum(SalesAmount) AS TotalSalesAmt
357
-
,Avg(SalesAmount) AS AvgSalesAmt
358
-
,count(DISTINCT SalesOrderNumber) AS NumOrders
359
-
,count(DISTINCT a.CustomerKey) AS CountCustomers
353
+
,e.ProductCategoryKey
354
+
,FirstName +''+ LastName AS FullName
355
+
,count(SalesOrderNumber) AS NumSales
356
+
,sum(SalesAmount) AS TotalSalesAmt
357
+
,Avg(SalesAmount) AS AvgSalesAmt
358
+
,count(DISTINCT SalesOrderNumber) AS NumOrders
359
+
,count(DISTINCT a.CustomerKey) AS CountCustomers
360
360
FROM FactResellerSalesXL_CCI a
361
361
INNER JOIN DimProduct b ONb.ProductKey=a.ProductKey
362
362
INNER JOIN DimCustomer d ONd.CustomerKey=a.CustomerKey
@@ -387,7 +387,7 @@ In a database with the P2 pricing tier, you can expect about nine times the perf
387
387
388
388
#### Deeper information
389
389
390
-
-[Learn how Quorum doubles key database’s workload while lowering DTU by 70% with In-Memory OLTP in SQL Database](https://customers.microsoft.com/story/quorum-doubles-key-databases-workload-while-lowering-dtu-with-sql-database)
390
+
-[Learn how Quorum doubles key database's workload while lowering DTU by 70% with In-Memory OLTP in SQL Database](https://customers.microsoft.com/story/quorum-doubles-key-databases-workload-while-lowering-dtu-with-sql-database)
391
391
392
392
-[In-Memory OLTP in Azure SQL Database Blog Post](https://azure.microsoft.com/blog/in-memory-oltp-in-azure-sql-database/)
Copy file name to clipboardExpand all lines: articles/sql-database/sql-database-managed-instance-configure-vm.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -114,7 +114,7 @@ The following steps show you how to connect to your newly created virtual machin
114
114
115
115
4. Close the **Connect to virtual machine** form.
116
116
5. To connect to your VM, open the downloaded RDP file.
117
-
6. When prompted, select **Connect**. On a Mac, you need an RDP client such as this [Remote Desktop Client](https://itunes.apple.com/us/app/microsoft-remote-desktop/id715768417?mt=12) from the Mac App Store.
117
+
6. When prompted, select **Connect**. On a Mac, you need an RDP client such as this [Remote Desktop Client](https://apps.apple.com/app/microsoft-remote-desktop-10/id1295203466?mt=12) from the Mac App Store.
118
118
119
119
7. Enter the username and password you specified when creating the virtual machine, then choose **OK**.
Copy file name to clipboardExpand all lines: articles/sql-database/sql-database-public-data-sets.md
+1-2Lines changed: 1 addition & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -25,7 +25,7 @@ Browse this list of public data sets for data that you can use to prototype and
25
25
|[Earth science data from NASA](https://earthdata.nasa.gov/)| Over 32,000 data collections covering agriculture, atmosphere, biosphere, climate, cryosphere, human dimensions, hydrosphere, land surface, oceans, sun-earth interactions, and more. | Data sets are in various formats. |
26
26
|[Airline flight delays and other transportation data](https://www.transtats.bts.gov/OT_Delay/OT_DelayCause1.asp)| "The U.S. Department of Transportation's (DOT) Bureau of Transportation Statistics (BTS) tracks the on-time performance of domestic flights operated by large air carriers. Summary information on the number of on-time, delayed, canceled, and diverted flights appears ... in summary tables posted on this website." | Files are in CSV format. |
27
27
|[Traffic fatalities - US Fatality Analysis Reporting System (FARS)](https://www.nhtsa.gov/FARS)| "FARS is a nationwide census providing NHTSA, Congress, and the American public yearly data regarding fatal injuries suffered in motor vehicle traffic crashes." | "Create your own fatality data run online by using the FARS Query System. Or download all FARS data from 1975 to present from the FTP Site." |
28
-
|[Toxic chemical data - EPA Toxicity ForeCaster (ToxCast™) data](https://www.epa.gov/chemical-research/toxicity-forecaster-toxcasttm-data)| "EPA's most updated, publicly available high-throughput toxicity data on thousands of chemicals. This data is generated through the EPA's ToxCast research effort." | Data sets are available in various formats including spreadsheets, R packages, and MySQL database files. |
28
+
|[Toxic chemical data - EPA Toxicity ForeCaster (ToxCast™) data](https://www.epa.gov/chemical-research/toxicity-forecaster-toxcasttm-data)| "EPA's most updated, publicly available high-throughput toxicity data on thousands of chemicals. This data is generated through the EPA's ToxCast research effort." | Data sets are available in various formats including spreadsheets, R packages, and MySQL database files. |
29
29
|[Toxic chemical data - NIH Tox21 Data Challenge 2014](https://tripod.nih.gov/tox21/challenge/)| "The 2014 Tox21 data challenge is designed to help scientists understand the potential of the chemicals and compounds being tested through the Toxicology in the 21st Century initiative to disrupt biological pathways in ways that may result in toxic effects." | Data sets are available in SMILES and SDF formats. The data provides "assay activity data and chemical structures on the Tox21 collection of ~10,000 compounds (Tox21 10K)." |
30
30
|[Biotechnology and genome data from the NCBI](https://www.ncbi.nlm.nih.gov/guide/data-software/)| Multiple data sets covering genes, genomes, and proteins. | Data sets are in text, XML, BLAST, and other formats. A BLAST app is available. |
31
31
@@ -35,7 +35,6 @@ Browse this list of public data sets for data that you can use to prototype and
35
35
|---|---|---|
36
36
|[New York City taxi data](http://www.nyc.gov/html/tlc/html/about/trip_record_data.shtml)| "Taxi trip records include fields capturing pick-up and dropoff dates/times, pick-up and dropoff locations, trip distances, itemized fares, rate types, payment types, and driver-reported passenger counts." | Data sets are in CSV files by month. |
37
37
|[Microsoft Research data sets - "Data Science for Research"](https://www.microsoft.com/research/academic-program/data-science-microsoft-research/)| Multiple data sets covering human-computer interaction, audio/video, data mining/information retrieval, geospatial/location, natural language processing, and robotics/computer vision. | Data sets are in various formats, zipped for download. |
38
-
|[Public genome data](https://www.completegenomics.com/public-data/)| "A diverse data set of whole human genomes are freely available for public use to enhance any genomic study..." The provider, Complete Genomics, is a private for-profit corporation. | Data sets, after extraction, are in UNIX text format. Analysis tools are also available. |
39
38
|[Open Science Data Cloud data](https://www.opensciencedatacloud.org/projects/)| "The Open Science Data Cloud provides the scientific community with resources for storing, sharing, and analyzing terabyte and petabyte-scale scientific datasets."| Data sets are in various formats. |
40
39
|[Global climate data - WorldClim](https://worldclim.org/)| "WorldClim is a set of global climate layers (gridded climate data) with a spatial resolution of about 1 km2. These data can be used for mapping and spatial modeling." | These files contain geospatial data. For more info, see [Data format](https://worldclim.org/formats1). |
41
40
|[Data about human society - The GDELT Project](https://www.gdeltproject.org/data.html)| "The GDELT Project is the largest, most comprehensive, and highest resolution open database of human society ever created." | The raw data files are in CSV format. |
0 commit comments