XVII Encontro – 29/11/2011. Virgílio Esteves ID&T – Research Leader @HIS & Founder of NetPonto...

23
SQL Server to SQL Azure: Migration Challenges Virgílio Esteves XVII Encontro – 29/11/2011

Transcript of XVII Encontro – 29/11/2011. Virgílio Esteves ID&T – Research Leader @HIS & Founder of NetPonto...

Page 1: XVII Encontro – 29/11/2011. Virgílio Esteves ID&T – Research Leader @HIS & Founder of NetPonto Coimbra C# / WPF / Silverlight / XNA / Azure.

SQL Server to SQL Azure: Migration ChallengesVirgílio Esteves

XVII Encontro – 29/11/2011

Page 2: XVII Encontro – 29/11/2011. Virgílio Esteves ID&T – Research Leader @HIS & Founder of NetPonto Coimbra C# / WPF / Silverlight / XNA / Azure.

Virgílio EstevesID&T – Research Leader @HIS

&Founder of NetPonto Coimbra

C# / WPF / Silverlight / XNA / Azure

Page 3: XVII Encontro – 29/11/2011. Virgílio Esteves ID&T – Research Leader @HIS & Founder of NetPonto Coimbra C# / WPF / Silverlight / XNA / Azure.

Challenges Data Storage

Connectivity

Authentication

Schema

T-SQL Supportability

Replication & Log Shipping

Page 4: XVII Encontro – 29/11/2011. Virgílio Esteves ID&T – Research Leader @HIS & Founder of NetPonto Coimbra C# / WPF / Silverlight / XNA / Azure.

Data Storage

SQL Server No size limits

SQL Azure Web Edition

1GB or 5GB Business Edition

10GB » 50GB (10GB increments)

Page 5: XVII Encontro – 29/11/2011. Virgílio Esteves ID&T – Research Leader @HIS & Founder of NetPonto Coimbra C# / WPF / Silverlight / XNA / Azure.

Connectivity

Tools Connection management

Page 6: XVII Encontro – 29/11/2011. Virgílio Esteves ID&T – Research Leader @HIS & Founder of NetPonto Coimbra C# / WPF / Silverlight / XNA / Azure.

Connectivity: Tools SQL Server

Management Studio (SSMS) SQLCMD Profiler

SQL Azure Management Studio (SSMS) [2008 R2+] SQLCMD Portal

Page 7: XVII Encontro – 29/11/2011. Virgílio Esteves ID&T – Research Leader @HIS & Founder of NetPonto Coimbra C# / WPF / Silverlight / XNA / Azure.

SQL Azure Network TopologyApplication

LoadBalancer

InternetAzure

SQL Azure Fabric – Automatic Failover, Replication and Load Balancing

TDS Protocol Gateway – Proxy to Backend SQL Server

Security Boundary

Forwards “sticky” sessionsto TDS protocol tier

TDS (tcp)

TDS (tcp)

LoadBalancer

LoadBalancer

LoadBalancer

LoadBalancer

LoadBalancer

SQLServer

SQLServer

SQLServer

SQLServer

SQLServer

SQLServer

Page 8: XVII Encontro – 29/11/2011. Virgílio Esteves ID&T – Research Leader @HIS & Founder of NetPonto Coimbra C# / WPF / Silverlight / XNA / Azure.

Connectivity: Connection Management

SQL Server No “default” connection termination

SQL Azure Connection termination at server discretion “Coded” reason codes

Page 9: XVII Encontro – 29/11/2011. Virgílio Esteves ID&T – Research Leader @HIS & Founder of NetPonto Coimbra C# / WPF / Silverlight / XNA / Azure.

Connection Termination: Causes Lock consumption Uncommitted transactions Transactions blocking system calls Log file size TempDB usage and size Excessive memory usage Maximum database size reached

Page 10: XVII Encontro – 29/11/2011. Virgílio Esteves ID&T – Research Leader @HIS & Founder of NetPonto Coimbra C# / WPF / Silverlight / XNA / Azure.

Connection Termination: Causes

Idle connections Long running transactions Denial of Service attacks Network problems Failover problems Load balancer discretion

Page 11: XVII Encontro – 29/11/2011. Virgílio Esteves ID&T – Research Leader @HIS & Founder of NetPonto Coimbra C# / WPF / Silverlight / XNA / Azure.

“Coded” Reason Codes

Page 12: XVII Encontro – 29/11/2011. Virgílio Esteves ID&T – Research Leader @HIS & Founder of NetPonto Coimbra C# / WPF / Silverlight / XNA / Azure.

Authentication

SQL Server SQL Authentication Windows Authentication

SQL Azure SQL Authentication

Page 13: XVII Encontro – 29/11/2011. Virgílio Esteves ID&T – Research Leader @HIS & Founder of NetPonto Coimbra C# / WPF / Silverlight / XNA / Azure.

Schema

SQL Server No limitations

SQL Azure Doesn’t support heaps All tables must have a clustered index

Page 14: XVII Encontro – 29/11/2011. Virgílio Esteves ID&T – Research Leader @HIS & Founder of NetPonto Coimbra C# / WPF / Silverlight / XNA / Azure.

T-SQL Supportability

SQL Server No limitations

SQL Azure Some are fully supported Some are partially supported Some are fully unsupported

Page 15: XVII Encontro – 29/11/2011. Virgílio Esteves ID&T – Research Leader @HIS & Founder of NetPonto Coimbra C# / WPF / Silverlight / XNA / Azure.

T-SQL: Fully or Partially Supported Constants Constraints Cursors Index management and rebuilding Local temporary tables Reserved keywords Spatial data and indexes Stored procedures Triggers

Page 16: XVII Encontro – 29/11/2011. Virgílio Esteves ID&T – Research Leader @HIS & Founder of NetPonto Coimbra C# / WPF / Silverlight / XNA / Azure.

T-SQL: Fully or Partially Supported User-defined functions Statistics management Transactions Tables, joins and table variables Create/Drop databases Create/Alter/Drop tables Create/Alter/Drop users and logins Views

Page 17: XVII Encontro – 29/11/2011. Virgílio Esteves ID&T – Research Leader @HIS & Founder of NetPonto Coimbra C# / WPF / Silverlight / XNA / Azure.

T-SQL: Unsupported

Common Language Runtime (CLR) Database file placement Database mirroring Distributed queries Distributed transactions Filegroup management

Page 18: XVII Encontro – 29/11/2011. Virgílio Esteves ID&T – Research Leader @HIS & Founder of NetPonto Coimbra C# / WPF / Silverlight / XNA / Azure.

T-SQL: Unsupported

Global temporary tables SQL Server configuration options SQL Server Service Broker System tables Trace flags

Page 19: XVII Encontro – 29/11/2011. Virgílio Esteves ID&T – Research Leader @HIS & Founder of NetPonto Coimbra C# / WPF / Silverlight / XNA / Azure.

Replication & Log Shipping

SQL Server Fully supported

SQL Azure Not supported

Page 20: XVII Encontro – 29/11/2011. Virgílio Esteves ID&T – Research Leader @HIS & Founder of NetPonto Coimbra C# / WPF / Silverlight / XNA / Azure.

Is there more?!?Yes… But some things come to the rescue

Page 21: XVII Encontro – 29/11/2011. Virgílio Esteves ID&T – Research Leader @HIS & Founder of NetPonto Coimbra C# / WPF / Silverlight / XNA / Azure.

Links worth looking…

SQL Azure Migration Wizard (http://sqlazuremw.codeplex.com/)

SQL Azure Backup (http://www.red-gate.com/products/dba/sql-azure-backup/)

Supported T-SQL Statements (http://msdn.microsoft.com/en-us/library/ee336270.aspx)

Partially Supported T-SQL Statements (http://msdn.microsoft.com/en-us/library/ee336267.aspx)

Unsupported T-SQL Statements (http://msdn.microsoft.com/en-us/library/ee336253.aspx)

SQL Azure Guidelines and Limitations (http://msdn.microsoft.com/en-us/library/ff394102.aspx)

Page 22: XVII Encontro – 29/11/2011. Virgílio Esteves ID&T – Research Leader @HIS & Founder of NetPonto Coimbra C# / WPF / Silverlight / XNA / Azure.

Questions?

Page 23: XVII Encontro – 29/11/2011. Virgílio Esteves ID&T – Research Leader @HIS & Founder of NetPonto Coimbra C# / WPF / Silverlight / XNA / Azure.

Thanks!

Virgílio [email protected]

http://pontonetpt.com/blogs/raposohttp://twitter.com/vraposohttp://pt.linkedin.com/in/virgilioesteves