Download presentation
Presentation is loading. Please wait.
Published byAmber McCarthy Modified over 10 years ago
1
András Belokosztolszki 6/10/2007Andras.Belokosztolszki@red-gate.com Managing change in the database world
3
Platinum Gold Silver www.sqlbits.com Group BY: [Food and Drink at Reading Bowl, see you there!] Feedback Forms: [Voucher for £30 book on return of Form] Lunch Time Sessions: [Idera in Everest, Quest in Memphis, Grok in Chic 1 and 2] Learn & Enjoy [Put your phone on Vibrate!] Ask The Experts [Sessions need to finish on time, take questions to the ATE area]
4
Background Working for Red Gate Software Working for Red Gate Software Software Architect/PM Software Architect/PM –SQL Log Rescue (reads the transaction log, and allows fine grained recovery) (reads the transaction log, and allows fine grained recovery) –SQL Compare Compares and synchronizes databases Compares and synchronizes databases –SQL Refactor Productivity tool for DBAs and developers Productivity tool for DBAs and developers
5
Agenda Motivation Motivation Where is the schema stored Where is the schema stored –Database vs. Creation scripts –Advantages/disadvantages Explore the database/make it explorable Explore the database/make it explorable Compare (scripts/db, db/db) Compare (scripts/db, db/db) Synchronize (scripts/db, db/db) Synchronize (scripts/db, db/db)
6
The Ideal World Talk to customers Design the perfect database ER ORM Normalization Domain restrictions Everything you need (tables, views, stored procedures) is there Build applications on top
7
Requirements Change Natural growth of the database Natural growth of the database –More data and physical limitations –Expansion: more information is stored –Access control restrictions –Database merges (two perfect databases need to be consolidated) Turnover, new people? New ideas? Turnover, new people? New ideas? Change for the sake of change! Change for the sake of change! Poor documentation -> Re-implementing existing functionality Poor documentation -> Re-implementing existing functionality
8
Changes Lead to Database Evolution Database schemata change, i.e. existing schemata need to be extended and changed Database schemata change, i.e. existing schemata need to be extended and changed Generally there is a deployed production database and one or many freely modifiable development databases Generally there is a deployed production database and one or many freely modifiable development databases There is a need to identify or track changes! There is a need to identify or track changes!
9
Database Development Development on the database Compare development database with production/staging database Synchronize/Deploy
10
DB Development Problems: It is NOT compiled code with public/private qualifiers It is NOT compiled code with public/private qualifiers –Dependencies can be broken Where are these? What is using this object? Public API Where are these? What is using this object? Public API Can I modify this? Can I modify this? What is in this object? What is in this object? Who changed this the last time? Who changed this the last time? –Problems are detected during production? Garbage (unused, possibly unusable code, possibly maintained) Garbage (unused, possibly unusable code, possibly maintained) Documentation: Where to store? How to retrieve? Documentation: Where to store? How to retrieve? Legacy code Legacy code No versioning No versioning No audit No audit Data Data
11
Database Development With Problems Development on development databases/files Where is the schema stored during development Explore What is in the database Where is the schema stored in the database Compare Are two objects the same? Processed objects (e.g. defaults and constraints) Generated objects (e.g. symmetric keys) Synchronize/Deploy Problems: Data CLR Assemblies Permissions/users
12
Where Is the Schemata Stored? In the database itself Modified directly Table columns are added Stored procedures added Some validation by SQL Server Execute procedures Query views Source control integration is hard Garbage Creation scripts All development is on SQL files Can be stored in source control Audit log (who, when, what) Validation is a problem Data? Scripts need to populate data MS Data Dude; SQL Compare 6.0 ?
13
Source Control For Databases Source control works with files, the database schema is not in files Source control works with files, the database schema is not in files Problem: identifying the difference between the files and the database schema itself Problem: identifying the difference between the files and the database schema itself Problems: keeping the files in sync with the database Problems: keeping the files in sync with the database
14
What Is In the Database? Processed objects [tables]: Processed objects [tables]: –syntax not preserved Textual objects [views, triggers]: Textual objects [views, triggers]: –Syntax preserved –Meta data not perfectly preserved -> runtime problems Generated objects [symmetric keys] Generated objects [symmetric keys] CLR: CLR: –hard to explore, just a DLL
15
Explore: Tables SQL Server 2000 dbo.sysobjectsdbo.syscolumns SQL Server 2005 sys.objectssys.columnssys.foreign_keyssys.default_constraints Tables are not textual objects Tables are not textual objects Comments and formatting in the creation scripts are lost Comments and formatting in the creation scripts are lost The information is stored in several system tables and are accessible via these or via system views The information is stored in several system tables and are accessible via these or via system views
16
Compare: Tables Scripts: Textual comparison Scripts: Textual comparison Documentation: Scripts or extended properties Documentation: Scripts or extended properties Generated constraint names (defaults, foreign keys, check constraints) Generated constraint names (defaults, foreign keys, check constraints) 2000 vs. 2005: users vs. schema 2000 vs. 2005: users vs. schema
17
Synchronization: Tables Tables contain data, so a drop/create is not an option Tables contain data, so a drop/create is not an option Certain operations cannot be performed using an alter statement: Certain operations cannot be performed using an alter statement: –Change filegroup –Change identity property –Certain data type changes (image)
18
Sync Problem: Alter Object In certain cases you cannot alter an object In certain cases you cannot alter an object –Tables need to be rebuilt when identity columns need change –Table returning functions when the returning table schema changes –Underlying CLR assembly needs to be rebuilt Be careful, because during the rebuild you may lose your: Be careful, because during the rebuild you may lose your: –Permissions –Extended properties
19
Explore: Stored Procedures, Views, … SQL Server 2000 dbo.sysobjectsdbo.syscomments SQL Server 2005 sys.objectssys.sql_modulessys.parameters Non-CLR stored procedures, functions, views and triggers are textual objects, i.e. they are stored as text Non-CLR stored procedures, functions, views and triggers are textual objects, i.e. they are stored as text Comments and formatting in the creation scripts are preserved Comments and formatting in the creation scripts are preserved The information is stored in several system tables and are accessible via these or via system views, but meta information may be inconsistent! The information is stored in several system tables and are accessible via these or via system views, but meta information may be inconsistent! This is a problem This is a problem
20
Problem: Stored Procedures (1) They are stored as text They are stored as text Dependencies may change: Dependencies may change: –Stored procedures can return bad result –Stored procedures can break (and we learn this only when we try to execute them) –This is very different from compiled software! TableA Stored procedure B Schema binding
21
Problem: Stored Procedures (2) Sysdepends and sys.sql_dependencies track dependencies (DEMO) Sysdepends and sys.sql_dependencies track dependencies (DEMO) –No, they do NOT –Alters are not updating sysdepends (2000) Stored procedures can reference nonexistent stored procedures Stored procedures can reference nonexistent stored procedures
22
Understanding Stored Procedures & Textual Objects Legacy code someone wrote sometime Legacy code someone wrote sometime Task: understand it fast and modify it Task: understand it fast and modify it –Formatted code easier to read –Documentation can be inlined unlike in tables Modification is by a simple alter statement? Modification is by a simple alter statement? –This is often sufficient, but there are problems with CLR and object dependencies
23
Problems: Views Views are also stored as textual objects The owner (user or schema) if not specified is resolved differently for various users! The owner (user or schema) if not specified is resolved differently for various users! –Solution: fully qualified names (DEMO) Underlying tables may change! Underlying tables may change! select * from dbo.tableA –Columns can change -> sp_refresh!! –Columns may be dropped –Solution: Expand * and schemabinding
24
Renaming Objects In scripts: Search and replace In scripts: Search and replace In database: In database: –Need to identify dependencies (but sysdepends is wrong) –Rename in Management Studio uses sp_rename Sp_rename is evil! It does update only the sysobjects/sys.objects tables/views. Sp_rename is evil! It does update only the sysobjects/sys.objects tables/views. Do not use it, or use it with care! Do not use it, or use it with care! –Drop and create the textual object
25
Roles, Users, Permissions The syntax for creating roles is different for 2000 and 2005 (sp_addrole vs. CREATE ROLE) The syntax for creating roles is different for 2000 and 2005 (sp_addrole vs. CREATE ROLE) –Which one should be in the scripts? –Sp_adduser in 2005 creates a schema Good policy: grant permissions to roles only Good policy: grant permissions to roles only –Do not compare user members Problem: create role transactional, but sp_addrole and sp_addrolemember are NOT Problem: create role transactional, but sp_addrole and sp_addrolemember are NOT
26
Explore: Defaults Two types of defaults, and they must be handled differently during synchronization Two types of defaults, and they must be handled differently during synchronization –DRI default (in the column) –Bound default – can be reused 2000: syscomments, sysobjects, syscolumns 2000: syscomments, sysobjects, syscolumns 2005: sys.columns, sys.default_constraints 2005: sys.columns, sys.default_constraints
27
Processed Objects: Defaults Default values for tables are parsed and processed by SQL Server: Default values for tables are parsed and processed by SQL Server: Note that there are: Note that there are: –Different cases –Different function calls –Extra parameters –Extra parentheses See my blog: http://www.simple- talk.com/community/blogs/andras/default.aspx See my blog: http://www.simple- talk.com/community/blogs/andras/default.aspxhttp://www.simple- talk.com/community/blogs/andras/default.aspxhttp://www.simple- talk.com/community/blogs/andras/default.aspx InputSQL Server 2000SQL Server 2005 2(2)((2)) 1+2+3(1+2+3)(((1)+(2))+3) cast(3 as int)(convert(int,3))(CONVERT([int],(3),0))
28
Compare and Sync: XML Schema Collections SQL Server 2005 supports XML with schema validation SQL Server 2005 supports XML with schema validation XML schema collection is a set of XML schemata XML schema collection is a set of XML schemata Problem: it is difficult to alter this object, i.e. you can only add to it! Problem: it is difficult to alter this object, i.e. you can only add to it! If you want to modify it, you must unbind it from all dependent objects, like table columns, functions, etc If you want to modify it, you must unbind it from all dependent objects, like table columns, functions, etc
29
CLR One can write.Net code and execute it from the database One can write.Net code and execute it from the database It is compiled code It is compiled code Well, it can be very fast Well, it can be very fast
30
Where are the CLR objects? The CLR assemblies are stored in the database as binary files. See sys.assemblies and sys.assembly_files The CLR assemblies are stored in the database as binary files. See sys.assemblies and sys.assembly_files Strongly named assemblies can be easier identified based on their version number Strongly named assemblies can be easier identified based on their version number Dependencies are much better tracked for CLR objects Dependencies are much better tracked for CLR objects
31
Problem: CLR Assembly My database has assemblyXYZ, what is in it? My database has assemblyXYZ, what is in it? –Documentation? –Get it out of the database and use Reflector? What about the dependencies (Which tables does it reference? It is like dynamic SQL) What about the dependencies (Which tables does it reference? It is like dynamic SQL)
32
CLR UDT One can create custom user defined types using.Net One can create custom user defined types using.Net These types can be used in a table as column types These types can be used in a table as column types Problem: How to update an assembly? Problem: How to update an assembly? –Alter assembly works sometimes! –What is the alternative? (See SQL Compare) Assembly UDT1 CLR Procedure Table with DATA
33
Synchronize: Routes DECLARE @RouteLifetime INT DECLARE @CreateRouteCommand Nvarchar(4000) SET @RouteLifetime = CASE WHEN (DATEDIFF(s, GETUTCDATE(), CAST('20070110 09:23:45.823' AS DATETIME)) < 0) THEN 1 ELSE DATEDIFF(s, GETUTCDATE(), CAST('20070110 09:23:45.823' AS DATETIME)) END set @CreateRouteCommand = N'CREATE ROUTE [routeA] AUTHORIZATION [routeA_User] WITH ADDRESS=N''TCP://localhost'', SERVICE_NAME=N''serviceA'',BROKER_INSTANCE=N''broker_instance_identifier'', LIFETIME='+ cast(@RouteLifetime as nvarchar(12))+'' exec sp_executesql @CreateRouteCommand Routes are used by the Service Broker Routes are used by the Service Broker Routes have a lifetime which is: Routes have a lifetime which is: Specified in seconds that indicate time to live Specified in seconds that indicate time to live Stored as an absolute value Stored as an absolute value
34
Explore: Certificates And Keys SQL Server 2005 supports Certificates and (A)symmetric keys SQL Server 2005 supports Certificates and (A)symmetric keys These are mostly generated by their create statements These are mostly generated by their create statements Can be used for encryption and authorization Can be used for encryption and authorization Note that there is nothing about key rotation!!! Note that there is nothing about key rotation!!! The system tables do not contain enough information to recreate these The system tables do not contain enough information to recreate these
35
Sync: Partitions A table that is stored on several filegroups based on a partitioning column A table that is stored on several filegroups based on a partitioning column Indexes are also partitioned Indexes are also partitioned Some filegroups can be read only Some filegroups can be read only Two objects that control this: partition schemes and partition functions Two objects that control this: partition schemes and partition functions <200220032004200520062007<………………
36
Sync: Partitions (2) Partition functions specify the intervals Partition functions specify the intervals Partition schemes specify the filegroups for these intervals Partition schemes specify the filegroups for these intervals E.g. E.g. CREATE PARTITION FUNCTION pf1 ( INT ) AS RANGE LEFT FOR VALUES ( 2000, 2001 ) CREATE PARTITION SCHEME ps1 AS PARTITION pf1 TO ( [PRIMARY], [PRIMARY], [PRIMARY] )
37
Sync Problem: Partitions The alter operation splits and merges a partition scheme, but this affects both the partition function and the partition scheme The alter operation splits and merges a partition scheme, but this affects both the partition function and the partition scheme A split and a merge is a very resource intensive operation because data is involved (moving rows from one filegroup to another) A split and a merge is a very resource intensive operation because data is involved (moving rows from one filegroup to another) Space limitations Space limitations
38
Questions ? Andras.Belokosztolszki@red-gate.com Andras.Belokosztolszki@red-gate.com Andras.Belokosztolszki@red-gate.com http://www.red-gate.com http://www.red-gate.com http://www.red-gate.com http://www.simple-talk.com/community/blogs/andras/default.aspx http://www.simple-talk.com/community/blogs/andras/default.aspx http://www.simple-talk.com/community/blogs/andras/default.aspx http://www.simple-talk.com/author/andr%c3%a1s-belokosztolszki/ http://www.simple-talk.com/author/andr%c3%a1s-belokosztolszki/ http://www.simple-talk.com/author/andr%c3%a1s-belokosztolszki/
39
Platinum Gold Silver www.sqlbits.com www.SQLBits.com [Conference Web site] www.SQLBlogCasts.com [Becoming the premier Blogging site for SQL professionals] www.SQLServerFAQ.com [UK SQL Server Community Website] UK SQL Bloggers cwebbbi.spaces.live.com sqlblogcasts.com/blogs/simons sqlblogcasts.com/blogs/tonyrogerson Andras.Belokosztolszki@red-gate.com http://www.red-gate.com http://www.simple-talk.com/community/blogs/andras/default.aspx http://www.simple-talk.com/author/andr%c3%a1s-belokosztolszki/ Feedback Forms!!
Similar presentations
© 2024 SlidePlayer.com. Inc.
All rights reserved.