|
Search:
Advanced search
|
Browse by category:
|
Glossary | Contact Us |
| Sub Categories | |||||
|
Stored Procedures (2) MS SQL Server Stored procedures
|
2005 (8) MS SQL Server 2005
|
2000 (2) MS SQL Server Version 2000
|
|||
|
2008 (4) MS SQL Server 2008
|
|||||
|
Showing: 1-10 of 115 »»
Articles
|
|||||
|
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...
|
|||||
|
|||||
|
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]...
|
|||||
|
|||||
|
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...
|
|||||
|
|||||
|
which function displas the state of information of the transaction in the session?
sys.dm_tran_current_transaction function
|
|||||
|
|||||
|
Where we can find Maximum Capacity Specifications for SQL Server 2008?
Please visit following URL
|
|||||
|
|||||
|
How to change the owner of all tables in a database?
DECLARE @oldowner sysname, @newowner sysname, @sql varchar(1000)
SELECT
@oldowner = 'OLD_OWNER',
@newowner =...
|
|||||
|
|||||
|
how to build connection string for MS SQL Server?
Standard Security
Driver={SQL Server};Server=myServerAddress;Database=myDataBase;Uid=myUsername;Pwd=myPassword;
Trusted...
|
|||||
|
|||||
|
Which transport protocol cannot be used for database mirroring?
HTTP protocol
|
|||||
|
|||||
|
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...
|
|||||
|
|||||
|
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.
|
|||||
|
|||||
Powered by
KBPublisher (Knowledge base software)