Viewing 15 posts - 1 through 15 (of 36 total)
shobha.aradhya (12/24/2012)
I have the below code
declare @ret int
DECLARE @XMLFile varchar(255)
SET @XMLFile = 'C:\myfile.xml'
exec @ret = master..xp_FileExists @XMLFile
When I execute this its throwing error
Could not find stored procedure 'master..xp_FileExists'.
When...
February 4, 2013 at 3:52 am
Then, may be problem with data
have u updated with my procedure.....(missing columns included in insert for trans table)
do one thing....
post rate value which u get from another table in...
October 15, 2012 at 11:41 am
Dats good point Eugene Elutin..
check is there any update/insert triggers on trans table are created or not
October 15, 2012 at 6:57 am
alter PROCEDURE usp_update
@pcid int
,@ppid int
,@ptid int
,@pqty int
AS
BEGIN
SET NOCOUNT ON;
DECLARE @Rate int
SET @Rate = (select prate from M_PRDT where PID=@ppid)
IF EXISTS (SELECT cid FROM trans WHERE cid =@pcid and pid=@ppid)
BEGIN
UPDATE trans
set...
October 15, 2012 at 6:55 am
Please post the table structures which are participated in the procedure
October 15, 2012 at 6:20 am
Thanks for ur replies..
Can plz suggest... which is better from SQL Server or From Front End (.Net)????
August 7, 2011 at 11:20 pm
Hi,
you can set at the services level. Go to SQL Server Service Properties..
On failure ,you can run a program that should send an email. ( batch script or...
October 15, 2010 at 12:13 am
Hi,
When you go to job history, you can find the 3 steps under the job....
i think u have seen top step in those 3 steps...
if you click on...
August 19, 2010 at 2:59 am
I have identified the problem on next day of this post 🙂
Thank You 🙂
August 3, 2010 at 3:19 am
Hi ,
I have configured the Maintenance Plan for T-Log Backup for every 2 minutes for a specific database( We can set multiple databases ).All T-logs are saved as...
May 14, 2010 at 4:10 am
Hi,
You can give permissions to another logins(Not admins) to trace through SQL Profiler.
Go To that login, select properties. and then go to securables
there you can...
April 21, 2010 at 1:42 am
Thanks for all for ur replies.
Dear Elliott W.
I want make data saving in encrypted format. then even though backup also having encrypted data. So...
April 20, 2010 at 10:52 pm
oh..sorry....the above link was for to upgrade to 2008..
February 19, 2010 at 3:19 am
Find the link below..
Hope u can get it.
all d best
Ganesh
February 19, 2010 at 3:17 am
Viewing 15 posts - 1 through 15 (of 36 total)