Viewing 15 posts - 2,761 through 2,775 (of 5,356 total)
Perhaps. I agree we dont want 100k Franks running around - 50k maybe, but 100k would be too many
Do I need to understand this joke?
January 21, 2004 at 12:35 am
Well, yes there is a specific source from where I got these examples. They are part of my small app to move research reports from email to database.
It sometimes...
January 21, 2004 at 12:28 am
This one is to store the data
Dim strStream As ADODB.Stream
Set strStream = New ADODB.Stream
strStream.Type = adTypeBinary
strStream.Open
strStream.LoadFromFile sFileName
DoEvents
Fields("MsgAttachment").Value = strStream.Read
....
This one is to retrieve the data
Dim strStream As ADODB.Stream
sql = "SELECT MsgAttachment...
January 20, 2004 at 8:50 am
Now that's a shameless plug ![]()
January 20, 2004 at 7:39 am
I haven't found such a documentation. But looking at the article I've mentioned didn't make the answer that difficult anymore. ![]()
January 20, 2004 at 7:37 am
What about telling your boss, that a mail is a kind of CYA strategy.
That will be the only way to prove that your application is working as it should....
January 20, 2004 at 7:35 am
Try to explicitely name your columns in the view, not SELECT...* FROM...
January 20, 2004 at 7:31 am
Basically if I remember correct, there is no equivalent to Last or First in T-SQL. This is simply like returning the last or first row in a resultset. And unless...
January 20, 2004 at 7:29 am
yes, there is.
Take a look at DBCC PINTABLE or sp_tableoption in BOL
January 20, 2004 at 7:10 am
Have you already searched this site?
IIRC, there is a script somewhere here, that compares data. Not sure if in tables and/or resultsets.
January 20, 2004 at 6:43 am
Aah, that's my turn again ![]()
Read this http://www.sommarskog.se/dynamic_sql.html and decide for yourself which way to go
January 20, 2004 at 6:41 am
No problem with me, as long as all post are of formal and textual quality. ![]()
January 20, 2004 at 6:00 am
Hi Andrew,
what exactly do you mean by 'formatting' ?
January 20, 2004 at 5:42 am
Not a solution, but just a note.
Wouldn't sending a mail be better?
I've made the experience, that if you don't explicitely tell your users about sending a message, they commonly close this nasty...
January 20, 2004 at 5:34 am
Viewing 15 posts - 2,761 through 2,775 (of 5,356 total)