uses system tables to determine the datatype of a field. : Utility Procedure « Procedure Function « SQL Server / T-SQL Tutorial

SQL Server / T-SQL Tutorial
1. Query
2. Insert Delete Update
3. Table
4. Table Join
5. Data Types
6. Set Operations
7. Constraints
8. Subquery
9. Aggregate Functions
10. Date Functions
11. Math Functions
12. String Functions
13. Data Convert Functions
14. Analytical Functions
15. Sequence Indentity
16. View
17. Index
18. Cursor
19. Database
20. Transact SQL
21. Procedure Function
22. Trigger
23. Transaction
24. XML
25. System Functions
26. System Settings
27. System Tables Views
28. User Role
29. CLR
Java
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
SQL Server / T-SQL Tutorial » Procedure Function » Utility Procedure 
21. 11. 3. uses system tables to determine the datatype of a field.
3>
4>
5>     CREATE PROCEDURE prNeedsQuotes
6>         @chvTable VARCHAR(30),
7>         @chvField VARCHAR(30),
8>         @chvNeedsQuotes CHAR(1OUTPUT
9>     AS
10>         DECLARE @chvDataType VARCHAR(30), @intUserType INT
11>     SELECT @chvDataType = LOWER(st.name), @intUserType = st.usertype
12>         FROM (sysObjects so INNER JOIN sysColumns sc ON so.id = sc.id)
13>             INNER JOIN sysTypes st ON sc.usertype = st.usertype
14>         WHERE so.type = 'U'
15>             AND so.name = @chvTable
16>             AND sc.name = @chvField
17>     IF @intUserType > 100
18>             BEGIN
19>                 SELECT @chvDataType = LOWER(st2.name)
20>                 FROM sysTypes st1 INNER JOIN sysTypes st2 ON st1.Type = st2.Type
21>                 WHERE st2.userType < 100
22>                   AND st2.userType NOT IN (1880)
23>                   AND st1.usertype = @intUserType
24>             END
25>     SELECT @chvNeedsQuotes =
26>             CASE @chvDataType
27>                 WHEN 'char' THEN 'y'
28>                 WHEN 'datetime' THEN 'y'
29>                 WHEN 'datetimn' THEN 'y'
30>                 WHEN 'smalldatetime' THEN 'y'
31>                 WHEN 'text' THEN 'y'
32>                 WHEN 'timestamp' THEN 'y'
33>                 WHEN 'varchar' THEN 'y'
34>                 ELSE 'n'
35>             END
36>     GO
1>
2>     drop PROCEDURE prNeedsQuotes ;
3>     GO
21. 11. Utility Procedure
21. 11. 1. Create procedure to drop foreign key
21. 11. 2. Spelling single digits.
21. 11. 3. uses system tables to determine the datatype of a field.
21. 11. 4. A stored procedure that tests for a valid foreign key
21. 11. 5. A script that creates a stored procedure that copies a table
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.