Viewing 15 posts - 151 through 165 (of 167 total)
And my post too (among others...) Steve
May 5, 2004 at 6:52 am
I was getting this same error and just figured it out yesterday. Seems my maintenance plan covered multiple databases, one of which had a SIMPLE recovery model. Part of the...
May 5, 2004 at 6:50 am
Users could always use the BACK button to go back to your form page and click the submit button again. Also if the processing of the form is taking a while,...
April 13, 2004 at 7:02 am
I had the same thing happen to me in regular ASP on Fri. Worked OK in QA, error in ASP page was that the recordset (thru ADO) wasn't being opened. ...
April 5, 2004 at 7:00 am
I used to get this all the time too. TOOLS --> OPTIONS --> ADVANCED tab in EM. Increase the "Login Time-out"
April 1, 2004 at 6:44 am
The concept of "trusted" or multi-level security deals with discretionary access controls (DAC) which is the grant, revoke, etc-level permissions users get on data objects as well as mandatory access...
March 30, 2004 at 6:43 am
C'mon... why would the QOD focus on a glitch in a SP? I would hope the goal of the QOD is to help folks learn more about the intricacies of...
March 29, 2004 at 7:23 am
To tag onto ianscarlett's reply, copy the rows you DON'T want to delete into a temp table using SELECT INTO (no logging),...
March 23, 2004 at 6:48 am
I do this all the time. However, you don't even need a Connection object, just a connection string. I have an INCLUDE file (for ASP) that contains my connection string.
e.g.
connString...
March 12, 2004 at 6:59 am
Try something like this:
firstname = xxxxx ' however you set your local variable, such as from Request.Form
lastname = xxxxx ' ditto
Set cm = Server.CreateObject("ADODB.Command")
cm.ActiveConnection = "Driver....."
cm.CommandType = 4 ' adCmdStoredProc
cm.CommandText...
February 25, 2004 at 11:35 am
Question regarding Antares686's comment regarding adUseClient. If this is an ASP app reading from SQL Server, what would adUseClient do for you? Since ASP is all server-side, wouldn't all cursors...
February 25, 2004 at 6:52 am
Where do you want the image to load? In a web browser? Into another field of your DB? Need more info. If the former, output your stored URL as the...
February 6, 2004 at 6:36 am
I go into Ent Mgr, highlight all of the rows of column info, then paste into Excel. Seems to work well if you're just using this info on-the-fly. You even...
January 28, 2004 at 6:53 am
It depends on how your DMZ/firewalls are set up. I work on an Air Force base and our web and SQL servers are in the DMZ. Inside the base firewall,...
January 23, 2004 at 6:50 am
Setting the conn string and/or connection object (if you're using one) in an INCLUDE file is definitely a good way to go. However, using a .INC extension is a bad...
January 23, 2004 at 6:45 am
Viewing 15 posts - 151 through 165 (of 167 total)