|
|
-
Alpesh Gorasia learned 1 Years ago through Blogs | 1 Point
There is one interesting story about NASA floating around the internet for quite some time now. The story goes like this - NASA spent millions to develop a pen that could write in space under zero gravity while the Soviet cosmonauts just used a pencil. ...
|
-
Alpesh Gorasia Liked 1 Years ago through Blogs | 1 Point
Recently while working with database security, I learned database roles as how the each role used. Apart from the server level roles if we need to require to assign access/rights to particular databases level then we need to go through database level ...
|
-
Alpesh Gorasia learned 1 Years ago through Blogs | 1 Point
Recently while working with database security, I learned database roles as how the each role used. Apart from the server level roles if we need to require to assign access/rights to particular databases level then we need to go through database level ...
|
-
Alpesh Gorasia Liked 1 Years ago through Blogs | 1 Point
You can use Ordinal position in the ORDER BY Clause for sorting the resultset. The ordinal position refers the column position in the SELECT statement. Consider the following select statement
select * from
(
select 17 as a,2 as b
union all
select...
|
-
Alpesh Gorasia Liked 1 Years ago through Blogs | 1 Point
Square braces in SQL Server play a major role in T-SQL programming. When an object name contains a space, special character, etc, the only way to express them is to put them aroud squre braces. Consider that you want to create a table user master (with ...
|
-
Alpesh Gorasia Liked 1 Years ago through Blogs | 1 Point
I recently had a need to show three different view in a employee productivity report with the same data set, two summary views and one account level detail view.
For the two summary views, employees are listed regardless they have data or not in the da...
|
|
|
|
|
-
Alpesh Gorasia Liked 1 Years ago through Blogs | 1 Point
One of the members in the forum asked about using decimal datatype in identity column. The question was "Is decimal point allowed in the identity column?" Ok. The identity column can never have any decimal points. It is a whole number. The decimal datat...
|