Download BDBI - Common Ground Solutions

Survey
yes no Was this document useful for you?
   Thank you for your participation!

* Your assessment is very important for improving the workof artificial intelligence, which forms the content of this project

Document related concepts

Tandem Computers wikipedia , lookup

Extensible Storage Engine wikipedia , lookup

Oracle Database wikipedia , lookup

Concurrency control wikipedia , lookup

Team Foundation Server wikipedia , lookup

Microsoft Access wikipedia , lookup

Ingres (database) wikipedia , lookup

Database wikipedia , lookup

Btrieve wikipedia , lookup

Microsoft Jet Database Engine wikipedia , lookup

Null (SQL) wikipedia , lookup

Clusterpoint wikipedia , lookup

Database model wikipedia , lookup

Relational model wikipedia , lookup

Microsoft SQL Server wikipedia , lookup

Open Database Connectivity wikipedia , lookup

SQL wikipedia , lookup

PL/SQL wikipedia , lookup

Transcript
BDBI Radio
Baker’s Dozen Business Intelligence Webcast Radio
13 tips on Microsoft SQL Server/BI/SharePoint Technologies
http://www.BDBIRadio.com
Week of 11/10/2013: 13 Tips for using Windows Azure/SQL Databases
BDBI Radio
• Produced and Hosted by Kevin S. Goff, Microsoft SQL
Server MVP and author of CoDe Magazine “Baker’s Dozen”
Productivity Series from 2004-2013
• Pre-recorded Weekly webcast – Available every Sunday
• Site: http://www.BDBIRadio.com
• My overall blog/site: http://www.KevinSGoff.net
• Program format:
– 13 quick tips on different SQL/BI/SharePoint topics
• In any week, tips might cover one topic (13 features in PowerPivot,
13 SQL Interview topics), or 13 random tips on anything from data
warehousing to MDX/DAX programming, to maybe even a few .NET
tips for scenarios when the .NET and BI worlds collide
– (Email me at [email protected] if you have questions)
5/22/2017
Windows Azure/SQL Databases
2
BDBI Radio
• Today: 13 tips for getting started with Windows Azure/SQL
Databases
• This is an introductory session for creating database and reports
“in the cloud”, in Windows Azure
• Intended to show basic steps for getting started
• Will cover how to create databases
• Will also cover how to create a reporting services instance “in
the cloud”
• Also will talk about what functionality doesn’t exist “in the
cloud”
5/22/2017
Windows Azure/SQL Databases
3
BDBI Radio – Topics for today
1.
2.
3.
4.
5.
6.
7.
8.
9.
10.
11.
12.
13.
Initial websites to read/create account
The Azure Management Dashboard
Creating Azure SQL Database
Attempting to connect to Azure Database
Configure firewall rules for access
Local SSMS connected to Azure Database
Creating a table against Azure Database
Create SSRS Service
SSRS Web Service URL
ADO.NET Connection String
Local SSRS Project using Azure Database
Deployed Report in Report Server
Limitations of Windows Azure SQL Databases
5/22/2017
Windows Azure/SQL Databases
4
1 – Initial websites to read/create account
•
Micrsoft’s Peter Laudati has an excellent blog post to get started:
–
•
•
http://blogs.msdn.com/b/peterlau/archive/2012/02/28/get-started-with-sql-azureresources.aspx
http://www.windowsazure.com/en-us/pricing/calculator/
Go to either of the two sites to create a trial:
–
–
–
http://www.windowsazure.com/en-us/
http://www.windowsazure.com/en-us/pricing/free-trial/
One month trial, no strings attached
1. Once you create a new account, you can access the Azure Management
area:
1.
http://manage.windowsazure.com
2. Remember – Azure is an evolving platform
1.
2.
3.
5/22/2017
Functionality changed during 2013
Changes “for the better” but still changes
Best to keep in mind that things can change again, there might be hiccups, etc.
Windows Azure/SQL Databases
5
2 – The Azure Management Dashboard
Use to create new SQL Database and
new SSRS Report Server Instance
5/22/2017
Windows Azure/SQL Databases
6
3 – Creating Azure SQL Database
5/22/2017
Windows Azure/SQL Databases
7
3 – Creating Azure SQL Database
5/22/2017
Windows Azure/SQL Databases
8
3 – Creating Azure SQL Database
Click here to get
more information
(next slide)
5/22/2017
Windows Azure/SQL Databases
New Database
Server Name
9
3 – Creating Azure SQL Database
Server name (including port
number) to connect from SSMS
Note reference for ADO.NET connection
strings, we’ll see them later
5/22/2017
Windows Azure/SQL Databases
10
4 – Attempting to connect to Azure Database
Trying to connect
from SSMS, must use
full Server Name
from previous slide
Must use SQL
Authentication – Windows
Authentication not
supported
Notice the
firewall
issue. We
can configure
that back in
the Azure
Management
Portal
5/22/2017
Windows Azure/SQL Databases
11
5 – Configure firewall rules for access
To configure firewall rules for the IP address, click
MANAGE and then respond “YES” to the prompt above
5/22/2017
Windows Azure/SQL Databases
12
6 – Local SSMS connected to Azure Database
Can use local version of SQL
Server Management Studio to
connect. Note – must use
SSMS that comes with SQL
Server 2008R2 SP1. Original
version of SSMS 2008 or SSMS
2008R2 aren’t enough!
5/22/2017
Windows Azure/SQL Databases
13
7 – Creating a table against Azure Database
Error occurs if we try to
insert a row into a table that
does not have a clustered
index.
Doesn’t occur on the CREATE
TABLE statement – but when we
try to INSERT a row
5/22/2017
Windows Azure/SQL Databases
14
7 – Creating a table against Azure Database
Works correctly!!!
5/22/2017
Windows Azure/SQL Databases
15
8 – Create SSRS Service
5/22/2017
Windows Azure/SQL Databases
16
9 – SSRS Web Service URL
SSRS Web Service URL:
https://8o7vpuobcf.reporting.windows.net/reportserver
We can create reports using BIDS/SQL Server Data Tools, and
deploy to this URL
But before we create an SSRS report project, we need the FULL
connection string for the Azure SQL Database (next slide)
5/22/2017
Windows Azure/SQL Databases
17
10 – ADO.NET Connection String
Can use this,
plus the Web
Service URL
from prior
slide, to
create SSRS
projects
5/22/2017
Windows Azure/SQL Databases
18
11 – Local SSRS Project using Azure Database
Make sure to set
Data Source Type
as SQL Azure
Connection
string comes
from ADO.NET
string from
prior slide.
Note that user
and PW go in
Credentials area
5/22/2017
Windows Azure/SQL Databases
19
12 – Deployed Report in Report Server
5/22/2017
Windows Azure/SQL Databases
20
13 – Limitations of Windows Azure SQL Databases
•
•
•
•
•
•
•
•
•
•
•
•
•
Sequence Object in SQL 2012
Master Data Services
Change Data Capture
Data Auditing
Compression
CLR Data Types
FILESTREAM data/objects
Integrated Full Text Search
SQL Server Replication
User-Defined Types
Table Partitioning
No Support for Analysis Services (OLAP Cubes/Tabular Models)
Full List:
– http://msdn.microsoft.com/en-us/library/windowsazure/ff394115.aspx
5/22/2017
Windows Azure/SQL Databases
21