1 / 29

Get a Lever and Pick Any Turtle: Lifting with Metadata

Get a Lever and Pick Any Turtle: Lifting with Metadata. Cade Roux cade@roux.org. Give me the place to stand, and I shall move the earth. Start Simple. Scale the Technique. Use Basic Concepts. Expand to Systems. Mixing Metaphors – We’re Going Down a Rabbit Hole.

idania
Download Presentation

Get a Lever and Pick Any Turtle: Lifting with Metadata

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Get a Lever and Pick Any Turtle:Lifting with Metadata Cade Roux cade@roux.org

  2. Give me the place to stand, and I shall move the earth.

  3. Start Simple

  4. Scalethe Technique

  5. Use Basic Concepts

  6. Expand to Systems

  7. Mixing Metaphors – We’re Going Down a Rabbit Hole Pam: And then outta that cake pops another stripper holding a smaller cake and then an even smaller stripper pops outta that one. Michael: What is that smaller stripper holding? Pam: A cupcake! It's cupcakes and strippers all the way down.

  8. Avoid Injury

  9. Metadata has always been there Codd Rule #0: The RDBMS must use the relational facilities to manage the database

  10. Metadata has always been there Codd Rule #4: There must be an active online catalog based on the relational model

  11. DBMeta DBHealth Demo

  12. Tables Views SPs

  13. SQL Server Basic Metadata Services • INFORMATION_SCHEMA contains tables and views (ANSI 92, kind of generic RDBMS model, doesn’t expose a lot of implementation details) • sys schema contains tables and views (more proprietary, particularly non-portable things like indexing features)

  14. SQL Server Extended Properties • You could make tables of additional information about database objects • DON’T • Built-in extended properties work great for this! • MS_Description: Microsoft’s standard “description” property • sp_addextendedproperty, sp_updateextendedproperty, sp_dropextendedproperty • fn_listextendedproperty • sys.extended_properties • I’ll improve this in the DBMeta schema

  15. DBMeta.Properties Layer this view on top of sys.extended_propertiesto: • Make it easier to use • Give a standard naming convention • Easier than CROSS APPLY fn_listextendedproperty

  16. DBMeta.AddXP, UpdateXP, DropXP • Easier to use than sp_addextendedproperty, sp_updateextendedproperty, sp_dropextendedproperty • The builtinprocs have some awkward hierarchy aspects: e.g. a column or trigger is defined at level 2 where the table is level 1

  17. DBMeta • With some simple tools we now have an easier way of dealing with the metadata in the extended properties • This can be expanded at will to join regular base metadata information, PIVOT with the property information and combine them in interesting ways • For instance, say your question was “I want to see NULLability (base metadata) of all money (base metadata) columns in tables in the Accounts subsystem (extended property) which have not been marked as reviewed. (extended property)” You can do that.

  18. DBHealth • Some questions about the health of the database system will be very standard • By health, I mean outside of integrity you can realistically enforce with constraints and beyond what you might use DDL triggers for • Can we use the metadata to do something generally useful? • Can we organize the health system using metadata so that it is self-maintaining as much a possible?

  19. Demo Data • Let’s create some data structures in our Demo schema – some tables and indexes

  20. Let’s Make Up Some DBA Rules • Arbitrary, but useful and chosen for variety • Rule #1: All tables should be identified with a SUBSYSTEM (Organizational Rule) • Rule #2: No unique indexes with columns which allow NULLs (Indexing Rule) • Rule #3: No varchar(N) columns where N <= 2 (Table Design Rule) • Rule #0: We only want to enforce these on schemas under management

  21. Rule #0 • We simply make a view DBHealth.MonitoredSchemas • We’ll need to remember to use this view • You could make a whole layer of views which filter through this, of course

  22. Rule #1 • Look for tables without extended property ‘SUBSYSTEM’

  23. Rule #2 • Look for unique indexes where any of the columns in the index are NULLable.

  24. Rule #3 • Find all varchar/nvarchar columns with length <= 2

  25. What about exclusions? • Let’s tag things for exclusion with extended properties!

  26. Now we have a bunch of rules • How do we organize them? • Could we put them in individual views or procedures to make them easy to use? • Then make a master procedure which runs them all. • But we’d need to make a list of all the procedures • But what did we say? • Let’s use the metadata to tag the procedures! • We’ll mark the procedures • We’ll categorize the procedures • We’ll be able to look for all the marked procedures and run them in an automated fashion – no new tables, limited maintenance!

  27. Ideas For Rules • All procs in DBHealth should have HEALTH_CHECK_PROC and HEALTH_CHECK_SET properties • Show me any unindexed tables (heap tables with no non-clustered indexes) • Show me any items tagged with a ‘TODO’ extended property • Show me all columns in the database which aren’t actually used (yes, you can do this!)

  28. Let’s use this from a client • Health Monitoring • .NET • Code Generation • T-SQL • T4

  29. Contact • Email: cade@roux.org • Twitter: @caderoux • Web: http://www.caderoux.com • SpeakerRate: http://speakerrate.com/caderoux

More Related