Database Knowledge Base
Search:     Advanced search
Browse by category:
Glossary | Contact Us

Sub Categories
 
folder Stored Procedures (2)
MS SQL Server Stored procedures
folder 2005 (8)
MS SQL Server 2005
folder 2000 (2)
MS SQL Server Version 2000
folder 2008 (4)
MS SQL Server 2008


Showing: 1-10 of 115    »»
Articles
 
document How we can back up all databases in SQL Server
USE master GO SET NOCOUNT ON DECLARE @BackupPath nvarchar(500) DECLARE @BackupDBFile nvarchar(500) DECLARE @BackupLogFile...
17 Aug, 2007 Views: 1283 Comments: 0
document How we can perform MINUS (Oracle) Or EXCEPT (Maxdb) in MS Access?
 Following query shows all records those are available in table 1 but not available in table 2 SELECT * FROM [TABLE1] LEFT JOIN [TABLE2]...
09 Oct, 2007 Views: 884 Comments: 0
document what is the method to change location of tempdb?
1. Determine the logical file names of the tempdb database and their current location on the disk. SELECT name, physical_name FROM...
08 May, 2008 Views: 744 Comments: 0
document which function displas the state of information of the transaction in the session?
sys.dm_tran_current_transaction function
21 Feb, 2009 Views: 237 Comments: 0
document Where we can find Maximum Capacity Specifications for SQL Server 2008?
Please visit following URL
08 Mar, 2009 Views: 388 Comments: 0
document How to change the owner of all tables in a database?
DECLARE @oldowner sysname, @newowner sysname, @sql varchar(1000) SELECT   @oldowner = 'OLD_OWNER',   @newowner =...
17 Aug, 2007 Views: 2657 Comments: 0
document how to build connection string for MS SQL Server?
Standard Security Driver={SQL Server};Server=myServerAddress;Database=myDataBase;Uid=myUsername;Pwd=myPassword;   Trusted...
16 Aug, 2007 Views: 669 Comments: 0
document Which transport protocol cannot be used for database mirroring?
HTTP protocol
21 Feb, 2009 Views: 249 Comments: 0
document what is ONLINE INDEX?
Online Index is a feature available after SQL Server 2005, prevously DBAs had to build index during off-peak hours as SQL Server locks data for...
09 Mar, 2009 Views: 510 Comments: 0
document If the TempDB Database is deleted from MS-SQL Server what will happen..?
TempDB will be re-created automatically when you restart SQLServer. You can't delete TempDB while SQLServer is running.
08 Oct, 2007 Views: 653 Comments: 0



RSS