Viewing 15 posts - 31 through 45 (of 101 total)
GilaMonster (5/21/2013)
shohelr2003 (5/21/2013)
1.If I delete log backup files after taking a full backup, would it create any problem while data recovery?
Maybe. Means that if the latest full backup is corrupt...
May 21, 2013 at 4:00 am
Thanks, IgorMi. It works.
@jeff Moden, this is earth, the most interesting place.
May 20, 2013 at 3:27 am
Thanks Abu Dina, Durai, Lowell.
All of your suggestions served my purpose well.
Thank you again, specially to Lowell for GUI help.
April 27, 2013 at 11:35 pm
@Durai, you are right and your idea worked.
Thank you @Durai and Jack.
Actually the application was developed six years ago and I am working only eight months on it. So it...
April 27, 2013 at 10:01 pm
In Sql 2000 I could apply these rules on specific tables using GUI mode. Is there any option like that in SQL 2008 R2?
April 25, 2013 at 5:46 am
@Eugene Elutin,
In short?
Number of words! FOR INSERT has two, INSTEAD OF INSERT has three! [Wink]
That's a good SSPrank.
You are really SSCrazy. Thank for your help.
March 22, 2013 at 10:20 pm
@Eugene Elutin,
Can you please tell me the basic difference between FOR INSERT and INSTEAD OF INSERT Trigger.
I know there are lots of resources on it. But please tell me in...
March 21, 2013 at 1:53 am
Eugene Elutin (3/20/2013)
CREATE TRIGGER [dbo].[tr_Product_Discount]
ON [dbo].[Product]
FOR UPDATE
AS
BEGIN
IF EXISTS (SELECT 1 FROM inserted
WHERE...
March 21, 2013 at 1:48 am
CREATE TRIGGER [dbo].[Discount]
ON [dbo].[Product]
INSTEAD OF INSERT
AS
Declare @disc int;
Declare @line int;
Declare @pdid as varchar(10);
BEGIN
select @disc = i.DiscPercentage from inserted i
select @line = i.LineNumber from inserted i
select @pdid = i.ProdId from inserted...
March 20, 2013 at 3:30 am
I fixed it up. There was a problem in service accounts. Now its working fine.
March 3, 2013 at 1:16 am
Thank you, OPC.THREE
create table T1(
SL int NOT NULL IDENTITY (1, 1),
ISDN varchar(13) NULL,
MSG varchar(50) NULL
)
insert into T1(ISDN,MSG) values ('123','ABC');
insert into T1(ISDN,MSG) values ('123','ABC');
insert into T1(ISDN,MSG) values ('123','XYZ');
insert into T1(ISDN,MSG) values...
February 6, 2013 at 3:16 am
Yes, data type was a fact. I fixed it but still problem arises. So I think to install Microsoft OLE DB Provider for Oracle.
January 29, 2013 at 12:38 am
I configured linked server using "Oracle Provider for OLE DB" and tested connection. Everything works fine. When I execute insert command, the problem arises.
System Configuration:
Windows 7 Ultimate 64 bit
SQL Server...
January 29, 2013 at 12:36 am
Viewing 15 posts - 31 through 45 (of 101 total)