Viewing 15 posts - 451 through 465 (of 508 total)
You can also do this from VBA. I do it all the time. I keep a list of tables to link inside the Access application. If I...
July 27, 2008 at 9:43 am
I've done this before. Just create the columns to export as Jeff wrote and export those to the other application. That way you don't mess up your own...
June 23, 2008 at 12:49 pm
Jeff,
Great post. I'd forgotten about that particular post of yours. I've actually been using tally type tables for dates for years but had forgotten how useful they can...
June 20, 2008 at 10:45 am
Thanks guys,
It sort of points to some sort of SPAM blocking on the SMTP server we're using. I'll get it sorted out with them.
Todd
June 20, 2008 at 10:39 am
You could try something like:
WHERE CHARINDEX(',' + CONVERT(VARCHAR, ID) + ',', @Var) <> 0
If the passed string didn't start and end with a comma you'd have to put one there...
June 19, 2008 at 11:54 am
We're not using Exchanger server. Just POP-3 and SMTP hosted somewhere else.
You think it's SPAM blocking by the hosting service?
Todd
June 19, 2008 at 10:46 am
Thanks Matt. I'll just have to create one off to the side to play with the new features.
Todd Fifield
June 11, 2008 at 3:27 pm
Matt,
Thanks. I'm going to try it. I'd forgotten about these features since I'm mostly dealing with databases with compatibility mode 80. I keep getting burned trying to...
June 10, 2008 at 11:40 am
It looks like you have 1 too many single quotes in:
FROM ''' + @DataFileName + '''
I find using several single quotes together very hard to eyeball. ...
June 10, 2008 at 11:29 am
I'd like to see how that's done exactly. This is for a one to many relationship between Customer and CustomerNotes? There could be zero or more notes per...
June 10, 2008 at 10:45 am
Viewing 15 posts - 451 through 465 (of 508 total)