Viewing 15 posts - 1 through 15 (of 18 total)
Yes Ananda,
I will suggest the maintenance for audit detail if it is on production database because if the users
running update and and insert statements then it will take more space...
April 11, 2011 at 5:53 am
Trigger code will be like this
create trigger [tablenameinserted] on [tablename] for insert
as
set rowcount 0
set transaction isolation level read...
April 11, 2011 at 5:01 am
hi ananda,
i think there is no other way to find the data which is insterd except that need to create some manual tricks to this.
here two posible ways.
1). you should...
April 11, 2011 at 4:50 am
Referencing to the bellow link
here the example
CREATE PROCEDURE #RegularSP
AS
SELECT TOP 10 City
FROM Person.Address
GO
/* Create SP with Encryption */
CREATE PROCEDURE #EncryptSP
WITH ENCRYPTION
AS
SELECT TOP 10 City
FROM Person.Address
GO
/* Execute SP -...
November 28, 2010 at 10:49 pm
Referencing to the link bellow
if we create procedure like
CREATE PROCEDURE #RegularSP
AS
SELECT TOP 10 City
FROM Person.Address
GO
/* Create SP with Encryption */
CREATE PROCEDURE #EncryptSP
WITH ENCRYPTION
AS
SELECT TOP 10 City
FROM Person.Address
GO
/*...
November 28, 2010 at 10:45 pm
Right This query is not working if the query is running in another DB session
and also this syntax is wrong
select * from sysobjects where name = '#testvm%'
if the query...
November 22, 2010 at 1:41 am
Dear I think there no such way to convert value from bigint to int
the only way to change the datatype of int variable to bigint
@Deep bigint
If there is any...
December 31, 2008 at 1:41 am
Your Question is not clear
I think you want to do this
declare @sar bigint
declare @deep int
set @sar = 1234356
set @deep = 12
select convert(int,@sar)
select @deep
Regards,
Yousaf Khan
December 31, 2008 at 12:42 am
Hi
I am unable to find the sp or command like sp_update_schedule
i have searched it in sql 2005 & 2000 but there is no...
December 31, 2008 at 12:28 am
Dear Friend!
first check that the Raj1 1 is added as linked server if...
December 30, 2008 at 12:48 am
Dear Friend!
Try to use a compression software like winrar or any
...
December 30, 2008 at 12:31 am
Dear Kenneth
Your Post is very usefull for the new...
December 29, 2008 at 9:53 pm
Dear Kenneth
These Both has the same functionalty
that shailesh got and you mentioned
from you
select convert(int, 900000 * rand() + 100000)
from shailesh
select cast((900000* Rand() + 100000) as int )
Note Cast and...
December 29, 2008 at 1:56 am
Viewing 15 posts - 1 through 15 (of 18 total)