Viewing 15 posts - 1,771 through 1,785 (of 3,489 total)
Oh okay. Thanks for the clarification. I guess I should learn a little MDX eventually... just so much to cover and so little time! (and not enough brain cells to...
September 26, 2016 at 1:38 pm
Oh, so from a user's perspective, it's effectively the same... thanks!
September 26, 2016 at 12:50 pm
Why not use a For Each file loop and then use an Excel connector and insert that way?
You probably need some serious normalization of the data you're importing. 255 columns...
September 26, 2016 at 10:25 am
Okay, let me approach this from a different angle, and maybe I can think this out.
The sale would always be associated with a given customer and the salesperson at the...
September 25, 2016 at 2:37 pm
You could use something like this.. I would recommend commenting out the EXEC statement and just printing the SQL to make sure the SQL statement is correct.
USE [mydatabase]; ...
September 22, 2016 at 9:53 pm
You're not specifying a way of telling which records are already in the destination table. Without that, you're going to insert the same records over and over.maybe you could use...
September 22, 2016 at 2:16 pm
For Each [file] Loop?
September 21, 2016 at 9:42 pm
How are you going through the table?
You could use a TOP VALUES query...
SELECT TOP 5 *
FROM dbo.MyTable
WHERE ...
Where are you sending the records? I guess you could use OFFSET....
September 21, 2016 at 9:27 pm
Okay, thanks... That's a great design! Not sure who thought of that, but just wow.
September 21, 2016 at 9:55 am
Here's a screenshot. Note the lack of individual tables in the field list on the right.
Every other time, the tables are broken out and then the columns are under...
September 20, 2016 at 8:36 am
If it's clinical trials data, that's all covered under HIPPA/PHI rules.
Having Access involved is a security disaster waiting to happen. It has no built-in security anymore. If at all possible,...
September 19, 2016 at 8:47 am
You can lead a horse to water....
Isn't that kind of presumptuous? Send me your paycheck, and then I'll do your job.
September 18, 2016 at 9:32 pm
If you are only trying to compare email1, then this will return all email addresses being used by more than one employee...
SELECT email1
FROM #temp1
GROUP BY email1
HAVING COUNT(*)>1;
If you need to...
September 18, 2016 at 12:24 pm
So what did you try?
I don't have an Oracle instance to connect to, but when you run the wizard to add a Data Source, you can choose "Oracle Database" from...
September 14, 2016 at 11:30 pm
A quick search turned up a ton of information...
September 14, 2016 at 8:48 pm
Viewing 15 posts - 1,771 through 1,785 (of 3,489 total)