Viewing 9 posts - 16 through 24 (of 24 total)
THANK U GUYS FOR YOUR ANSWERS
insert into TEMPORARYTABLE exec sp_executesql @sqlquery
This temporary table will have the definition exactly which is the output of @sqlquery.
LIKE THIS I...
November 2, 2005 at 4:00 am
SELECT eno,ename,dname
FROM TABLE5 ,TABLE6
WHERE EMP.DEPTNO=DEPT.DEPTNO
Instead of above this is the write query
SELECT eno,ename,dname
FROM TABLE5 emp,TABLE6 dept
WHERE EMP.DEPTNO=DEPT.DEPTNO
exec sp_executesql @s-2
when i executed the above statement...
November 1, 2005 at 10:55 pm
Thanks once again!!
we are using xp_cmd shell to execute the dts.
we will call 15 dts from Stored procedure and some logic is there in sp ,i cant call the dts...
September 21, 2005 at 7:19 am
Thanks once again!!
we are using xp_cmd shell to execute the dts.
we will call 15 dts from Stored procedure and some logic is there in sp ,i cant call the dts...
September 21, 2005 at 7:19 am
Thanks phillcart for responding..
The error is occuring in server.A message box will be popuped(DTSRUN.EXE ERROR-APPLICATION ERROR,THE MEMORY COULD NOT BE READ).Scheduled calls a stored procedure ,in that stored procedure DTS...
September 21, 2005 at 6:52 am
Thanks Richard Kemp..
This is the error which is popuped ,memory is not a problem.we have enough space in server.
We will run this multipel DTS by using jobs.
dtsrun.exe -...
September 14, 2005 at 11:55 pm
iam doing from sql query analyzer i didnt get any warning message , i logged as a administrator...in my system i have only client,,,,
server is in other place.
August 31, 2005 at 6:09 am
I think the user doesn't have write permission on that table.
February 23, 2005 at 3:25 am
With out .ldf file, database can't be attached.
February 23, 2005 at 3:18 am
Viewing 9 posts - 16 through 24 (of 24 total)