Viewing 15 posts - 931 through 945 (of 954 total)
Thanks Sugesh for the quick reply.
Any ideas what else we could do?
I did wonder if I could use some kind of timer and check the number of rows transformed. If...
July 19, 2007 at 5:41 am
Hi Sandy,
I believe you could do this in an activeX script. And add the destination columns on your DataPumpTask.
Take at look at the Disconnected Edit... properties of the package.
(Right click anywhere...
July 19, 2007 at 5:20 am
Stuart,
I think you have two options. Both rely on you haveing some kind of key that you can join the results together with.
1. Would be in two parts:
Insert into based...
March 7, 2007 at 4:07 am
Stuart,
This would work (I've included working tables etc)
But the insert at the end works, you would just need to modify it for your tables.
create table dbo.sumtest
(
ID int identity,
Type varchar(10),
Amount int
)
insert...
March 1, 2007 at 6:03 am
Hi Peter,
I had looked at using decimal and money - didn't think to use float - tend to avoid it if I can! Nice solution.
Pity I missed what happens with...
June 13, 2006 at 2:00 am
Dear Dobrzak,
I am sure you have a really good reason for this, as if the numbers are stored as decimal or money then the trailing zeros wouldn't matter anyway, to...
June 12, 2006 at 8:51 am
Hi John,
Many thanks for that.
The funny thing is he'll end up with full admin rights eventually but this is his first moving from Access to SQL Server, so I was...
June 6, 2006 at 7:55 am
Hi John,
Thanks for that, but doesn't that also allow him to drop objects?
Cheers,
Rodney.
June 6, 2006 at 6:36 am
Yelena,
I also agree with you.
I know that the questions and free and I have still learn something from this, and that some questions are abigious on purpose (pick the...
May 23, 2006 at 2:23 am
I am with you Terry.
I doubled checked with BOL just to make sure my memory wasn't deceiving me - I noticed the caveat so re-read the question. It didn't seem...
May 22, 2006 at 8:10 am
Ritesh,
It's looks as though you have missed out a &
strSQL2 = "SELECT qryEatingDisorder.* FROM qryEatingDisorder WHERE PageID = '" & lngRecordNo & "'" & "and EatingID = '2'"
Should do the...
May 4, 2006 at 7:57 am
Yueming,
You need to write your case statement like this:
Case when...
May 4, 2006 at 7:21 am
Also don't forget that dates in SQL Server use single quotes not #. So '12/02/2005'
Also it's a general rule to put dates in the following format yyyymmdd, as to avoid...
May 2, 2006 at 4:36 am
Hi Bob,
If I understand you correctly, you want to insert data from a query into a table but not populate all the fields in the table, in which case something...
April 28, 2006 at 6:30 am
Hi Jeff,
I did think of using SUBSTRING, but I can't remember know why I used RIGHT... I think it may have been because the account numbers are variable length, so...
April 20, 2006 at 3:13 am
Viewing 15 posts - 931 through 945 (of 954 total)