Viewing 12 posts - 211 through 222 (of 222 total)
After step 2, you can also use a simple insert statement instead of following import/export wizard. this is only possible if you are running this statement on same server or...
January 29, 2008 at 3:47 pm
Can you please upload sample data file?
January 29, 2008 at 3:41 pm
can you please give a try as it happened with me once.
try
select * from [PROD].[database].dbo.
instead of
select * from PROD.database.dbo.table.
i know there is no difference in this but it...
January 24, 2008 at 8:14 pm
it is really a pain to extract numbers from strings and even more complexity if the numeral standard is different from the standard one. i had done a project for...
January 24, 2008 at 5:52 pm
it is entirely you choice. If it is feasible for you to move test files to common shared area, load with bcp or bulk insert and then move it to...
January 22, 2008 at 9:51 pm
if possible try to run the DTS independent of a scheduled job in test environment.
or it could be that your exchange or mail is not setup properly in SQL...
January 22, 2008 at 9:23 pm
Hi ecomkid
Check this based on your sample data.
DECLARE @Products TABLE
(product_id int
,OLDPictureURL VARCHAR(100)
, sku VARCHAR(100)
, NEWPictureURL VARCHAR(100))
INSERT INTO @Products (product_id, OLDPictureURL, sku)
SELECT 69, '~/Assets/ProductImages/1029351.jpg', 'IB-A3-12'
UNION ALL SELECT 70,...
December 10, 2007 at 11:06 pm
Steve is right, you can set your default shema to user. For setting it default schema take help from link given below
December 10, 2007 at 10:40 pm
Hi Ken
I tried it and it works.
As it is stored in binary, even if i look at the data, i can't determine whether image is successfully loaded and when it...
December 8, 2007 at 12:35 am
Hi I have a script which i downloaded way back. Sorry i forgot author's name. But i pass on my credits to him if he finds this script.
i modified the...
December 4, 2007 at 10:49 pm
I haven't dealt with this kind of situation, but if you can access data with openquery, i think there should not be much problem.
Why don't you try to store...
November 12, 2007 at 4:25 am
Hi Guys
I managed to do that, actaully just followed the image wizard.
The next problem i am facing is that when ever i export the file to pdf, every alternate...
November 1, 2007 at 11:38 pm
Viewing 12 posts - 211 through 222 (of 222 total)