|
Solution Search:
|
SQL Server Resource Center
Solve SQL Server errors and more from the DBA trenches -- part 2
Application installed a proc called SchemaName.ProcName under a schema other than dbo, and now needs to be changed.
Resolution: Run "ALTER SCHEMA dbo TRANSFER... More... Nov 13, 2008
Implementing security audit in SQL Server 2008
ADD (DATABASE_OBJECT_CHANGE_GROUP), ADD (SELECT, INSERT, UPDATE, DELETE ON Schema::HumanResources BY dbo) WITH (STATE=ON) Nov 11, 2008
Tutorial: Learn SQL Server basics from A-Z
Server permissions on a more granular basis. Get an an overview of user-schema separation and granular server permissions, as well as a new function to help you...
More...
Nov 6, 2008
New datetime data types in SQL Server 2008 offer flexibility
AdventureWorks2008
GO IF EXISTS (SELECT table_name FROM information_schema.tables WHERE table_schema = 'Sales' AND table_name = 'OrderDates') DROP TABLE Sales... More... Oct 21, 2008
SQL Related Articles
Saying yes, no or maybe to stored procedures
that stored procedures provide is an abstraction layer between the schema and applications that access the database. It is almost impossible to refactor the schema without it. That abstraction layer can be...
More...
Aug 16, 2006
Minding the data and databases
A data architect has responsibility for:
Creating data models and schema that meets the business requirements
Change management and control of the data models
Assisting with optimization of models for...
More...
Jul 20, 2006
|