Viewing 15 posts - 1,771 through 1,785 (of 2,268 total)
pri.amin (12/3/2008)
You are correct it has been asked before but the issue has progressed!!I am asking where is it best to change the DataType??
In the View or in the Table?
If...
December 3, 2008 at 5:39 am
nazaninahmady_sh (12/3/2008)
i want to get data with (ntext) type from one Database and input them in a another Database with (navarchar) type and for is purpose...
December 3, 2008 at 5:28 am
add
SET NOCOUNT ON
to the top of your t-sql code.
December 3, 2008 at 5:16 am
You are putting CLIENT with a datatype of varchar(255) into nvarchar(30) and nvarchar(100) there is possibilty that the data is too long so you will need to filter...
December 3, 2008 at 5:09 am
What I would do is;
Add a look-up transformation to look-up against the destination to see if the data exists, If you have a primary key you can join on...
December 3, 2008 at 4:28 am
You may need to provide a bit more information for a complete answer.
such as;
how much data is being saved and how are you saving the data, are you...
December 3, 2008 at 4:04 am
I have found the problem with using an error redirect on a destination is that it usually throws an error before it has a chance to re-direct the row.
What I...
December 2, 2008 at 10:39 am
I tend to default to using NVARCHAR, unless i can absolutely be certain that there will not be any UniCode data in there. I find the increase in...
December 2, 2008 at 9:54 am
You can call a stored proc from another proc by using the standard EXEC funciton.
EXEC YourProc
Be aware though that you will have to be able to handle errors from...
December 2, 2008 at 9:25 am
what does your table structure look like?
December 2, 2008 at 6:38 am
Whay are you connecting diretly to the server, rather than using SSMS from your client machine?
December 2, 2008 at 4:53 am
SMAZ (12/2/2008)
Yes, the source excel files are of same structure!Could you plz explain more in detail HOW TO SET EXCEL CONNECTION USING EXPRESSION?
Thanks
In SSIS simply add a new Excel data...
December 2, 2008 at 2:56 am
The only way to can be really sure that the results are the same through-out the dev process , is to create a test-harness and use a product like NUnit...
December 1, 2008 at 5:15 am
Sounds like a strange error, I have not encountered this before, perhaps it is a problem with the server or disks. It may be worthwile to get the IT...
November 28, 2008 at 9:07 am
Viewing 15 posts - 1,771 through 1,785 (of 2,268 total)