SQL Server knowledge center
everything about SQL Server
See also:
Other Geeks@INDC
Sign in
|
Join
|
Help
Home
Contact
About
RSS
Atom
Comments RSS
Search
Recent Posts
Fitur T-SQL Window Function Terbaru dari SQL Denali
Bermain-main dengan Fitur T-SQL Denali : SEQUENCE
Renungan atas artikel "Being a SQL Server Pro Is Hard Work!"
Found Error When Starting First SQL Denali Analysis Service in Vertipaq Mode and How to Troubleshoot
Fitur-fitur yang tidak disupport di SQL Denali
Different role of IT architects
Pertanyaan Mengenai SQL Query Optimizer
Solusi dan Pemrograman Transact-SQL : Convert Comma Delimited String into Resultset with Transact-SQL
Solusi dan Pemrograman Transact-SQL : UNPIVOT Problem and Solution
Solusi dan Pemrograman Transact-SQL
Tags
ASP.NET
Business Intelligence
C Sharp
General/motivation
LINQ
Rubrik Solusi dan Teknik Pemrograman Transact SQL
SharePoint and Microsoft Office 2007 SharePoint Server
solusi
SQL Server
SQL Server Reporting Services
Windows Communication Foundation (WCF)
Windows Workflow Foundation
News
Your database is crawling like turtles? I can turn it like sport car, contact me if you need help. My email : sologuyfromrolla@gmail.com
Navigation
Home
Blogs
Videos
Curriculum
eBooks
Jobs
Forum
Downloads
Archives
September 2011 (3)
August 2011 (2)
March 2011 (3)
February 2011 (1)
January 2011 (4)
December 2010 (2)
June 2010 (4)
May 2010 (5)
March 2010 (2)
January 2010 (10)
December 2009 (11)
November 2009 (3)
August 2009 (5)
July 2009 (10)
June 2009 (1)
April 2009 (3)
March 2009 (3)
February 2009 (11)
January 2009 (7)
December 2008 (17)
November 2008 (11)
October 2008 (5)
September 2008 (8)
August 2008 (2)
July 2008 (16)
June 2008 (15)
May 2008 (16)
April 2008 (20)
March 2008 (19)
February 2008 (16)
January 2008 (21)
December 2007 (31)
November 2007 (30)
October 2007 (16)
September 2007 (4)
August 2007 (8)
April 2007 (19)
March 2007 (1)
February 2007 (1)
July 2006 (1)
May 2006 (29)
April 2006 (11)
April 2007 - Posts
0
Comments
SQL Server ANSI Information Schema Views
by
Kasim.Wirama
SQL Server ANSI Information Schema Views Based on the system tables, a set of ANSI views are defined in each database and inherited from the model database; they extract a limited set of information from the database system tables. Each view has the owner...
Filed under:
SQL Server
0
Comments
System Tables in SQL Server
by
Kasim.Wirama
System Tables in SQL Server According to the relational model, all data about a database’s tables should be kept in system tables. Every database has a set of catalog tables, which describe and govern all the data tables; and some databases, such...
Filed under:
SQL Server
0
Comments
More View Usage Variations in SQL Server
by
Kasim.Wirama
More View Usage Variations in SQL Server This article will show you how to use view for any scenarios that need improvisation such as partitioned views, function in view, and encrypting views. Partitioned View You can make a union of a set of views, provided...
Filed under:
SQL Server
2
Comments
Using View in SQL Server
by
Kasim.Wirama
Using View in SQL Server Views are virtual tables. They are really queries, but you can refer to them as though they were tables. For example, the following code creates a view : CREATE VIEW CA_Authors AS SELECT * FROM Authors WHERE state = ‘CA’...
Filed under:
SQL Server
1
Comments
Table Operations in SQL Server
by
Kasim.Wirama
Table Operations in SQL Server This article, I want to show you some operations on table such as determining table size, copying, renaming and deleting a table, and changing table structure through the ALTER TABLE command. Determining table size You can...
Filed under:
SQL Server
0
Comments
SQL SERVER Relational and Storage Engine
by
Kasim.Wirama
SQL SERVER Relational and Storage Engine There are a lot of factor to keep in mind when building databases in SQL Server. The context for understanding those factors begins with a fundamental fact about SQL Server architecture, namely that at its core...
Filed under:
SQL Server
2
Comments
Advanced Data Type Value in SQL Server
by
Kasim.Wirama
Advanced Data Type Value in SQL Server I will show you advanced data type in SQL Server. They are: default values, null, identity property, uniqueidentifier, Unicode character data, and computed columns. You can also specify whether you want a column...
Filed under:
SQL Server
0
Comments
Data Types in SQL Server
by
Kasim.Wirama
Data Types in SQL Server Topic for this article seems very simple. But worth it to know because improper data types will impact to suboptimal database performance. Every database columns have data types that limit the kind of data that can be stored in...
Filed under:
SQL Server
0
Comments
Storage Engine in SQL Server
by
Kasim.Wirama
Storage Engine in SQL Server Storage engine stores and retrieves data for the query engine. First of all, SQL Server has a larger page size (8KB) and this change has a ripple effect throughout SQL Server storage structure. Extents are now 64 KB (8 pages...
Filed under:
SQL Server
1
Comments
Using BULK INSERT T-SQL Server Command
by
Kasim.Wirama
Using BULK INSERT T-SQL Server Command SQL Server add one more interesting advance with the BULK INSERT command. This command is used to imports data from a bcp-formatted text file into SQL Server, and you do not need to invoke BCP externally to use it...
Filed under:
SQL Server
0
Comments
Bulk Copy Data Into SQL Server
by
Kasim.Wirama
Bulk Copy Data Into SQL Server If external and internal SQL table does not have same structure, you should use BCP format file and change it to fit the data. To create a format file in BCP, you had to avoid specifying either /c or /n in bcp command and...
Filed under:
SQL Server
0
Comments
Bulk Copy Data Out from SQL Server
by
Kasim.Wirama
Bulk Copy Data Out from SQL Server Sometimes you want to bulk insert data from external source to SQL Server. Common external resource is from other SQL Server or flat file. This article, I want to show you how to insert external data into SQL Server...
Filed under:
SQL Server
0
Comments
Security Function in SQL Server
by
Kasim.Wirama
Security Function in SQL Server If you want to track login name, user name or role membership for each login, a full set of security functions are provided by SQL Server. These security functions enable you to restrict what portions of database data a...
Filed under:
SQL Server
0
Comments
Object Level Permissions in SQL Server
by
Kasim.Wirama
Object Level Permissions in SQL Server Besides database level permissions, you can grant permission on database object level. The kinds of permissions you can grant are: Table or view : SELECT, INSERT, UPDATE, and DELETE Stored procedure : EXECUTE By...
Filed under:
SQL Server
0
Comments
Permissions in SQL Server
by
Kasim.Wirama
Permissions in SQL Server I will show permission feature in SQL Server, and how you can correctly implement permission for securing your SQL Server database. When a database has already had database users and roles, you can grant permissions to database...
Filed under:
SQL Server
More Posts
Next page »