Viewing 15 posts - 4,846 through 4,860 (of 6,486 total)
Oh - entirely different problem. I see where we're heading now....
But I guess that's so that you can't backdoor your way into having all of the advantages of DBPro...
February 7, 2008 at 11:40 am
Have you tried using Bulk Insert to do this instead? Specifying codepage='raw' seemed to bring in all characters you had: otherwise some seem to go to unprintable characters.
I did...
February 7, 2008 at 11:38 am
hmm - I could swear I saw something under deploy options to drop objects from the server that don't exist in the database project. I will have to go...
February 7, 2008 at 11:25 am
It certainly is - but in both cases - it just goes to show how unwieldy it would get to calculate every single holiday based on some crazy set of...
February 7, 2008 at 11:18 am
If you import it in to a temp denormalized, then your renormalization process is simply a series of UNION statements
Something like
Insert myfinalTable (account_id, product_id, support)
select account_id, product1, support1 from #temp
UNION...
February 7, 2008 at 10:31 am
While I fully agree with Joe that it becomes unwieldy without the dates table - there IS an algorithm that calculates Easter....Thought you might be interested.
February 7, 2008 at 10:25 am
Even in a report, CrossTab represents a summarization or aggregation operation, so you would STILL have to fix the duplication issue (i.e. if all children were marked as relcode=1, only...
February 7, 2008 at 10:13 am
Radovan Jablonovsky (2/6/2008)
February 7, 2008 at 10:05 am
Actually my first assumption when hit with that many problems is that a. I am sitting across from someone not qualified, b. they're reading from a script and don't have...
February 7, 2008 at 9:03 am
Question is - could you run that update from within Access itself?
OLE being what it is - there are some provider specific errors that don't get past back correctly. ...
February 7, 2008 at 8:55 am
it works fine in either case...it just reorders your rows from how you inserted them...
No - reallly:)
I'm not sure what you're seeing, but here's what I get:
new customer ...
February 7, 2008 at 8:39 am
Assuming you had a way to order the table to set up the sequential number, yes - but that method is worse than the temp table method. Meaning -...
February 7, 2008 at 8:27 am
looks to me that it's further down on the list? as in - row # 4 of your SELECT statement?
February 7, 2008 at 7:34 am
gordon_griffin (2/7/2008)
February 7, 2008 at 7:22 am
Jim Russell (2/7/2008)
Tell me more...
February 7, 2008 at 6:55 am
Viewing 15 posts - 4,846 through 4,860 (of 6,486 total)