Viewing 15 posts - 1 through 15 (of 57 total)
First - great article!
Minor issue with implementation - maybe somebody has experienced this too? When the data is posted from my query into the excel sheet, it doesn't start posting...
December 8, 2004 at 9:19 pm
Yes its set to autogrow, and has unlimited growth. Its currently has an available size of 50mb.
Thanks!
June 18, 2004 at 8:00 am
I was reading about that - but I got the impression that was something that had to be done inside sql server. I need to check how the locking is...
May 28, 2004 at 11:35 pm
They shouldn't have been, but of course I can't guarantee that they weren't...
Thanks!
May 28, 2004 at 3:09 pm
I *am* using an ADP. Thanks!
May 28, 2004 at 9:56 am
Thanks to everyone for your suggestions! I'm going to try the bcp suggestions first b/c franky, I need dynamic aspects to this file creation and I dislike activeX scripts. But,...
December 19, 2003 at 12:22 pm
Thank you for the suggestion - I was hoping to eliminate a rather large section of code.
Here is something else that worked (I just discovered)
set @execution = 'exec master..xp_sendmail...
December 18, 2003 at 4:39 pm
Thanks everyone for your suggestions! I ran into this suggestion on another website and so far it 'seems' to work - using
Environ("username")
captures the username I was looking for. I'm...
September 10, 2003 at 7:48 am
I'll take you up on that b/c I'm just starting, and have been doing T-sql for so long that all my VB skills (much less web programming) are completely rusty....
July 31, 2003 at 9:08 am
I have been delving heavily into VB.NET myself as a way to get away from Access, b/c of its 'issues' - like the ones you mention.
I just hope they get...
July 31, 2003 at 8:51 am
*The only workaround I have been able to come up with is to open a recordset based on a command and then assign that recordset to the recordsource of the...
July 31, 2003 at 8:33 am
Thank you very much! Setting the command timeout to zero seems to have solved the problem.
July 31, 2003 at 8:18 am
The majority of that time (82 seconds) seemed to be from scanning clustered index.
Code:
Sub ReleaseHold()
Dim cmd1 As New ADODB.Command
Set cmd1.ActiveConnection = CurrentProject.Connection
cmd1.CommandText = "delete from swbt_summary"
cmd1.Execute
cmd1.CommandText = "Insert into swbt_summary...
July 30, 2003 at 11:47 am
It ran fine (82 seconds) in query analyzer, so I'm not sure the execution plan will hold any answers to why it hangs when the same query is posed to...
July 30, 2003 at 11:12 am
I have tried running it as a stored proc and gotten the same result. I will run it in query analyzer next and see if I can see anything. Thanks.
July 30, 2003 at 11:01 am
Viewing 15 posts - 1 through 15 (of 57 total)