Viewing 15 posts - 946 through 960 (of 1,065 total)
if that job is expired in 7 days so we have to send an email alert to those employer from 7 days onwards,
for this i need a trigger.
how to write...
August 4, 2008 at 5:13 am
Identity column is duplicated
Do you have any triggers?
If @@IDENTITY is used, replace it with SCOPE_IDENTITY()
July 31, 2008 at 12:12 am
I saw a large number of blocking.
Is it self blocking? If yes, ignore it.
July 31, 2008 at 12:05 am
domain wise you can group the tables
Schema can be used for this.
July 30, 2008 at 7:15 am
Following query shows whether SNAPSHOT is enabled or not:
select [name], is_read_committed_snapshot_on, snapshot_isolation_state, snapshot_isolation_state_desc
from sys.databases
where [name] = 'AdventureWorks'
July 30, 2008 at 1:07 am
but this does not list any options in the 'operator' drop down box.
You have to created an operator first.
It is very easy to create an operator.
Expand "SQL Server Agent". Right...
July 30, 2008 at 12:33 am
5GB is not that big.
It is recommended to keep .mdf and .ldf on separate drives.
July 30, 2008 at 12:09 am
Change to another database (master) before doing the restore. ?
i am not getting exactly wat u r trying to tell
USE master
GO
RESTORE DATABASE DatabaseName
FROM DISK = 'D:\BackupFileName.BAK'
July 14, 2008 at 7:48 am
BOL:
ALTER INDEX REORGANIZE statement is always performed online. This means long-term blocking table locks are not held and queries or updates to the underlying table can continue during the ALTER...
July 14, 2008 at 3:59 am
Can be done using SELECT INTO
Example:
use pubs
go
select * into dbo.Trial from master.dbo.Trial
July 9, 2008 at 6:37 am
Copy the .LDF file also.
.MDF file is data file. LDF file is Log file.
July 9, 2008 at 5:16 am
Mani Singh (7/8/2008)
(0) deadlocks.. yes it is always possible
... is very well maintained:::: i.e. Database is normalized...
GilaMonster (7/8/2008)
It is not normal to have 10 deadlocks a day...
July 8, 2008 at 10:48 pm
Run DBCC UPDATEUSAGE.
BOL has following remarks:
In earlier versions of SQL Server, the values for the per-table and per-index row count and page counts can become incorrect. Under certain circumstances,...
July 2, 2008 at 7:47 am
Viewing 15 posts - 946 through 960 (of 1,065 total)