Viewing 15 posts - 76 through 90 (of 134 total)
Do you have the right permission on the database where the stored procedure exists, which you are trying to execute?
VG
August 27, 2008 at 11:55 am
You can try using data conversion transformation in between to the data type you wanted, in your case DT-Date.
-VG
August 26, 2008 at 12:07 pm
SSIS is developed in visual studio environment, so you need to open the solution (.sln)and then open the package(.dtsx). Then See the sql syntex if any.
Here is the link for...
August 26, 2008 at 10:06 am
Yes...I found that link too....It is really good...and I got it working my SSIS packages...
Thanks for your feedback...
Have a nice week-end
VG
August 22, 2008 at 4:59 pm
Thanks again jonh!!
I downloaded it and let me explore with it....
VG
August 20, 2008 at 5:03 pm
Thank for the reponse john!!!
Is this free to download ?? ...I don't see download link in here http://www.sqlis.com/23.aspx
Thanks,
VG
August 20, 2008 at 4:39 pm
Where did you all installed File Watcher Task From ? IS this is a custom task?
Is this similar to WMI task in SSIS ?
Thanks,
VG
August 20, 2008 at 3:44 pm
I don't know, you tried the similar way..I suggest, use Conversion task in between and use dt-str data type there and use this derived column to map to destination column.
-VG
August 13, 2008 at 1:13 pm
I think error with dynamic sql
ALTER PROCEDURE [dbo].[sp_EdicionImpresaDetalles]
@iEp_Id int=0
,@iEp_E_Id int OUTPUT
,@iEp_R_Id int OUTPUT
,@iEp_Seccion int OUTPUT
,@sEp_Nombre NVARCHAR(100) OUTPUT
AS
BEGIN
--...
August 5, 2008 at 12:25 pm
You must have checked this, make sure you selected, Destination Copy options - CopyAllDefaults to TRUE.
-VG
August 1, 2008 at 12:05 pm
Do you have SP2 fro sql server 2005? That is the latest..
-VG
August 1, 2008 at 11:52 am
You have to use dynamic sqk for this
set description = '16"X14''' + 'PR F/G bead'
-VG
August 1, 2008 at 10:49 am
This is a very common problem is SSIS..So, what you are trying do if you can explain, there will be a better solution....
I am guessing, defining your variables scope ...
July 31, 2008 at 1:20 pm
In Flatfile connection manager editor, advanced options like output column width, change it to bigger number, can be given same as your database table column width for this column...
-V
July 31, 2008 at 10:06 am
You need to add After insert, update if need for both insert and update...
CREATE TRIGGER dbo.trptAppointmentsINSERT
ON dbo.ptAppointments
AFTER INSERT, UPDATE
AS
BEGIN
...
July 30, 2008 at 1:29 pm
Viewing 15 posts - 76 through 90 (of 134 total)