Our Quality Professors
Tips and Tricks (Books) Category
Some more tutorials
Announcements
More ...
|
SQL Server How to Tips & Tricks
Tips and Tricks (Books)
by
Itfunda
Pricing and Details
More Details
Seller Details
Support Forum
Comments
|
Summary: |
This SQL Server How to Tips and Tricks eBook has solutions of 111 real time SQL Server problems that a developer face in most of the real time projects. All solutions are written with best practices and comes with complete to-the-point description and source code.
Author: Sheo Narayan, the founder of DotNetFunda.com
|
Coverage: | sql-server-tutorials sql-server sql-server-how-to sql-server-tip-and-tricks sql-server-tips sql-tips |
Delivery mode (?): | Electronic Delivery, |
Duration/Validity: | Life time |
Tips for buying: You may buy without logging in, however to provide a better service we suggest to login.
|
Downloadable eBook with Source code for the life time validity |
Rs 900.00 |
$18.00 |
40.00% |
- |
Rs 540.00/ $10.80 |
|
Contact us for volume licenses discount. | Payment can be done securely using Credit card, Debit card or Net banking. |
Table of Contents
Content written in this book are based on SQL Server 2014. All solutions are given with the best practices.
Introduction
- Introductions
- How to install SQL Server database?
- How to connect database server in Microsoft Management Studio?
Database- How to create a new database in SQL Server?
- How to create a new database user for SQL Server database?
- How to specify permissions (Read/Write) for a specific user in the database?
- How to rename the database in SQL Server?
- How to drop the database from SQL Server?
- How to take backup of the database in SQL Server?
- How to restore a database in SQL Server?
- How to export the database from SQL Server?
- How to import the database into SQL Server?
- How to generate SQL script of the whole database structure in SQL Server?
- How to shrink the database in SQL Server?
Table- How to create a table in the database in SQL Server?
- How to specify a primary key in the database table in SQL Server?
- How to set more than one columns of the table as Primary key in SQL Server database?
- How to specify auto-increment column in the database while creating a new table in SQL Server?
- How to add a new column in the existing database table as Auto Increment column in the SQL Server?
- How to specify increment and initial value to the new auto increment column from the code in SQL Server?
- How to set a column as primary key to the existing database table in SQL Server?
- How to create a new column in the existing database table as Auto increment and primary key?
- How to and which data type should be used for what type of data?
- How to create computed column (eg. Salary column = Ctc column – Pf column = Net column) in SQL Server?
- How & why to specify a database table column as nullable in SQL Server?
- How to add primary key and foreign key relationship in a Sql Server database table?
- How to create indexes in the Sql Server database table?
- How to store data of other language in the Sql Server database table?
Table - Create, Read, Update, Delete (CRUD)- How to insert a new record into SQL Server database?
- How to read data from SQL Server database table?
- How to insert multiple records into the Sql Server database table at once?
- How to update records into the Sql Server database table?
- How to delete a record from the Sql Server database?
- How to filter records of the database table in SQL Server?
Joins- How to join more than one table and get the results in SQL server?
- How to perform left join (or left outer join) in SQL Server?
- How to perform right join (or right outer join) in SQL Server?
Views- How to create a View in SQL Server?
- How to alter a Views in SQL Server database?
Variable declaration and setting values
- How to declare and use a variable in SQL Server?
Query
- How to select a database to work with in Query window in SQL Server?
- How to select all columns and records from the database table in SQL Server?
- How to return only few columns data from a SQL Server database?
- How to return top n records from the database in SQL Server?
- How to retrieve distinct (unique) record from SQL Server database?
- How to sorted records from the SQL Server database table?
- How to sort records based on multiple columns in SQL Server database?
- How to use sub-query to return data from database?
- How to get records having null value in a column of SQL Server database table?
- How to use not equal to condition in the query of SQL Server?
- How to return records in Group by a column value in SQL Server?
- How to filter result returned from Group by clause in SQL Server?
- How to use wild card characters in SQL Server database query?
- How to get a random unique value in SQL Server?
- How to retrieve random records from the database table in SQL Server?
- How to merge two column value as one in SQL Server?
- How to get records from the table that contains a specific word (in SQL Server)?
- How to convert rows into columns of the database tables in SQL Server?
- How to transfer data from one table to another in SQL Server?
- How to delete duplicate rows from the database table in SQL Server?
- How to write query to join tables form two different databases in SQL Server?
- How to get a default value for a nullable fields in SQL Server?
Build in functions- How to know the installed SQL Server name and version?
Aggregate functions
- How to user aggregate functions like AVG, MIN, MAX, SUM etc in SQL Server?
String related
- How to concatenate two string types columns separated by a string in SQL Server?
- How to concatenate more than one columns in SQL Server?
DateTime related- How to get current Date and time in SQL Server?
- How to return day, month, and year in the SQL Server database?
- How to return Day name of the week, day of the week, and month name in SQL Server?
- How to check for validate date in SQL Server?
- How to get the difference between two dates in SQL Server?
- How to get Age in year, month and date format in SQL Server?
Conversion related- How to convert the data type of the SQL Server variables?
- How to convert a column value from one data type to another in SQL Server?
- How to get the length of the string in SQL Server?
- How to trim unnecessary space from the string in SQL Server?
- How to get a part of string from a sentence in SQL Server?
User defined functions (UDFs)
- How to create a User defined scalar function in SQL Server?
- How to create a Table-valued function in SQL Srever?
- How to create Multi-statement Table-valued function in SQL Server?
Stored Procedure
- How to create stored procedure that accepts parameters to fetch data from database?
- How to create parameter less stored procedure to return data from Sql Server database?
- How to execute a stored procedure from the query window in SQL Server?
- How to create a stored procedure to insert record into SQL Server database?
- How to create stored procedure to update record in the SQL Server database?
- How to create stored procedure to delete a record from the SQL Server database?
- How to alter / modify a stored procedure in SQL Server?
- How to create stored procedure to insert record and return identity column value?
- How to create stored procedure to return paginated data (custom paginations) from SQL Server database?
- How to create stored procedure that accepts optional parameter in SQL Server?
Transactions
- How to use transaction in stored procedure in SQL Server?
Error Handling
- How to handle error in stored procedures in SQL Server?
- How to catch and throw error in SQL Server?
- How to return a custom error message from SQL Server in case of error?
- How to get more details about an error occurred in SQL Server?
Loops and Conditions- How to use IF condition in SQL Server?
- How to use WHILE loop in SQL Server?
- How to use CASE statement to check a value of the column in SQL Server?
- How to use CASE statement to check for searched condition in SQL Server?
- How to use CASE statement with ORDER BY clause in SQL Server?
- How to use CASE statement to set a variable value in SQL Server?
Common Table Expression (CTE)- How to create a CTE (Common Table Expression) and use it?
Working with XML- How to retrieve data in XML format from SQL Server?
- How to insert records from XML to SQL Server database table?
- How to temporarily hold data into table variable in SQL Server?
- How to temporarily hold data into temporary table in SQL Server?
Triggers
- How to create AFTER INSERT triggers in SQL Server?
- How to create AFTER UPDATE triggers in SQL Server?
- How to create AFTER DELETE triggers in SQL Server?
- How to disable a trigger in SQL Server?
- How to enable trigger in SQL Server?
- How to create INSTEAD OF trigger in SQL Server?
Are you facing any other problem related with SQL Server, please let us know, we shall solve and add as part of this eBook.
What comes with this eBook- Online - anywhere and anytime access
- Complete downloadable eBook with no expiry date
- Complete source code is available in the eBook itself
ITFunda .com
Itfunda's Profile
ITFunda.Com is an e-commerce website that furnishes a platform to the interested buyer and seller to interact and transact for the software or software related services. We are a part of SN ITFunda Services LLP, a parent establishment of a popular Microsoft(R) technology related knowledge based website www.dotnetfunda.com.
SN ITFunda Services LLP is a authorized distributor / re-seller of- Own products
- .NET How to's
- ASP.NET How to's
- jQuery How to's
- ASP.NET AJAX Tutorials
- .NET Corporate trainings and
- Online .NET Trainings
- TechSmith Corporation products like
- Camtasia Studio
- SnagId
- Morae
- Nevron Software
- Nevron .NET Vision
- Nevron Chart for Sharepoint
- Nevron Chart for SSRS
- Nevron .NET Chart
- Nevron Diagram for .NET
- Nevron Gauge for .NET
- Nevron Gauge for Sharepoint
- Nevron Sharepoint Vision Suite
- Nevron SSRS Vision
- Questpond training materials
- Deccansoft training materials
Comments
If you have bought this, please cast your vote and provide your comment about this tutorial.
|
|
Other Trainings
|