|
|
Stories recently tagged with 'SQLAuthority'
|
|
submitted by
pinaldave
3 days, 5 hours ago
blog.sqlauthority.com — Table-Valued Parameters is a new feature introduced in SQL SERVER 2008. In earlier versions of SQL SERVER it is not possible to pass a table variable in stored procedure as a parameter, but now in SQL SERVER 2008 we can use Table-Valued Parameter to send multiple rows of data to a stored procedure or a function without creating a temporary table or passing so many parameters.
This is one feature all the SQL Server developer were waiting for long time. This article explains how it can be used with very simple words. read more...
1 comment
|
category: Database | Views: 6
|
|
tags:
SQL, SQLServer, Database, SQLAuthority | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
pinaldave
3 days, 5 hours ago
blog.sqlauthority.com — Filtered Index is a new feature in SQL SERVER 2008. Filtered Index is used to index a portion of rows in a table that means it applies filter on INDEX which improves query performance, reduce index maintenance costs, and reduce index storage costs compared with full-table indexes. When we see an Index created with some WHERE clause then that is actually a FILTERED INDEX.
I am sure this feature will change how the indexes are created in SQL Server. read more...
1 comment
|
category: Database | Views: 5
|
|
tags:
SQL, SQLServer, Database, SQLAuthority | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 1 month, 1 day ago, submitted by
pinaldave
1 month, 2 days ago
blog.sqlauthority.com — INTERSECT operator in SQL Server 2005 is used to retrieve the common records from both the left and the right query of the Intersect Operator. INTERSECT operator returns almost same results as INNER JOIN clause many times.
When using INTERSECT operator the number and the order of the columns must be the same in all queries as well data type must be compatible.
Let us see understand how INTERSECT and INNER JOIN are related.We will be using AdventureWorks database to demonstrate our example. read more...
3 comments
|
category: Database | Views: 240
|
|
tags:
SQL, SQLServer, SQLAuthority, Database, 2005 | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 4 months, 9 days ago, submitted by
pinaldave
4 months, 9 days ago
blog.sqlauthority.com — One of the most popular request I have received on this blog is to create one page which list all the SQL Server FAQs. SQL Server technology is very broad as well very deep. This is my humble attempt to list few of the daily used details in one page. Let me know your opinion and suggestion.
Download SQL Server FAQ Sheet in PDF format
read more...
4 comments
|
category: Database | Views: 118
|
|
tags:
SQLAuthority, SQLServer, Database, SqlServer2005 | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
pinaldave
10 months, 25 days ago
dotnetslackers.com — Each organization has its own coding standards and enforcement rules. It is sometime difficult for DBAs to change code following code review, as it may affect many different layers of the application. In large organizations, many stored procedures are written and modified every day. It is smart to keep watch on all stored procedures, at frequent intervals, before code comes to final code review. read more...
1 comment
|
category: Database | Views: 1
|
|
tags:
CodeReview, SQLAuthority, SQLServer, Database, SqlServer2005 | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 11 months, 21 days ago, submitted by
pinaldave
11 months, 24 days ago
blog.sqlauthority.com — I have seen enough times developer getting confused between EXEC and EXEC(). EXEC command executes stored procedure where as EXEC() function takes dynamic string as input and executes them ... Read More... read more...
1 comment
|
category: Database | Views: 2
|
|
tags:
Server, SQLAuthority, Database, SQL | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 11 months, 24 days ago, submitted by
pinaldave
11 months, 25 days ago
blog.sqlauthority.com — Scrum is organized around the following roles:
* Product Owner - Determines what functionality is needed
* ScrumMaster - Leads the Scrum and is primarily responsible for making sure the Scrum process is followed and removing impediments that keep the Team from working
* The Team - Those who do the actual work that translates what the Product Owner has requested into usable functionality
Read more ... read more...
4 comments
|
category: Database | Views: 4
|
|
tags:
Scrum, Agile, ProjectManagement, SQLAuthority, Project | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
pinaldave
1 year, 1 month ago
blog.sqlauthority.com — While discussing replication with Jr. DBAs at work, I realize some of them have not experienced replication feature of SQL SERVER. Following is quick reference of replication keywords I created for easy conversation. read more...
add a comment
|
category: Database | Views: 0
|
|
tags:
SQL, SQLServer, Database, SQLAuthority | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
pinaldave
1 year, 1 month ago
blog.sqlauthority.com — The questions I received in last two weeks:
“I do not have backup, is it possible to restore database to previous state?”
“How can restore the database without using backup file?”
“I accidentally deleted tables in my database, how can I revert back?”
“How to revert the changes, I have only logs but no complete backup?”
“How to rollback the database changes, my backup file is corrupted?”
Answer:
You need complete backup to rollback your changes. If you do not have complete backup you can not revert back. Sorry. read more...
add a comment
|
category: Database | Views: 0
|
|
tags:
SQL, SQLServer, Database, SQLAuthority | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 1 year, 1 month ago, submitted by
pinaldave
1 year, 1 month ago
blog.sqlauthority.com — How can I insert multiple values in table using only one insert? Now this is interesting question. When there are multiple records are to be inserted in the table following is the common way using T-SQL. read more...
add a comment
|
category: Database | Views: 32
|
|
tags:
SQLServer, SQLAuthority, Database, SQL | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 1 year, 1 month ago, submitted by
pinaldave
1 year, 1 month ago
blog.sqlauthority.com — In this article we will see how to find count of all the duplicate records in the table. Following query demonstrates usage of GROUP BY, HAVING, ORDER BY in one query and returns the results with duplicate column and its count in descending order. read more...
add a comment
|
category: Database | Views: 24
|
|
tags:
Database, SQLAuthority, SQL, SQLServer | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 1 year, 1 month ago, submitted by
pinaldave
1 year, 1 month ago
blog.sqlauthority.com — Following tutorial about BPA is ran on one of my old laptop, which has SQL Server 2005 installed. The SQL Server had many issues and they all are displayed in the result. Please note this is not production server and all the errors are intentionally generated. This tutorial is explained using images, which are very easy to understand. read more...
add a comment
|
category: Database | Views: 1
|
|
tags:
SQL, SQLAuthority, Database, SQLServer | tag it
Everyones tags: | Your tags: | |
|
|
|
|

Sponsored Link: www.carlist.ie
Ads via The Lounge
|