Categories
Sql Server

SQL Server Interview Questions & Answers

SQL Server Interview Questions & Answers Question 1: How does the database recovery model impact database backups? Ans. Database recovery model is responsible for the retention of the transaction log entries.So the setting determines if transaction log backups need to be issued on a regular or not. SQL Server database recovery models: Simple – Committed transactions […]

Categories
Sql Server

How To Insert Values Into An Identity Column In SQL Server

How To Insert Values Into An Identity Column In SQL Server In this tutorial i will explain you How To Insert Values Into An Identity Column In SQL Server.Identity columns are mostly used as primary keys in tables.These columns automatically assign a value for each new row.But if you want to insert your own value into the […]

Categories
How To Article

How To Disable Searching Online With Bing In Windows 8

How To Disable Searching Online With Bing In Windows 8 In this tutorial i will guide you through How To Disable Searching Online With Bing In Windows 8.In Windows 8, when users search for files in there system, Windows 8 also search for online information. The results are provided by Bing. If you want to keep […]

Categories
PHP

How To Create Dynamic Drop Down Menu In PHP

How To Create Dynamic Drop Down Menu In PHP In this tutorial i will teach you How To Create Dynamic Drop Down Menu In PHP.We are using MySQL as back-end. CSS: .bdy { margin: 0px auto; width:800px; font-family:Calibri; font-size:14px; padding-top:100px; } ul { font-family:Calibri; font-size:14px; margin: 0; padding: 0; list-style: none; } ul li { display: […]