%@LANGUAGE="VBSCRIPT"%> <% '''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''' ' Spd E-Letter v4 ' © 2001, 2002 PensaWorks, inc. ' For help with this program, please visit http://www.pensaworks.com '''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''' '================================= '''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''' ' Subscriber DB Import Module v1 ' by Lane Williams '''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''' Access = "User" : Nav3 = "1" %> <% thisPage = Mid(request.servervariables("SCRIPT_NAME"), InstrRev(request.servervariables("SCRIPT_NAME"), "/") + 1) response.buffer = true server.scripttimeout = 10000 Dim dbStr, sSQL, dbSQL, rsSQL Sub OpenDB Set dbSQL = Server.CreateObject("ADODB.Connection") dbSQL.Open dbStr End Sub Sub CloseDB dbSQL.Close Set dbSQL = Nothing End Sub Sub OpenRS Set rsSQL = Server.CreateObject("ADODB.Recordset") Set rsSQL.ActiveConnection = dbSQL rsSQL.CursorType = 3 rsSQL.Open sSQL,,,&H0002 End Sub Sub CloseRS rsSQL.Close Set rsSQL = Nothing End Sub '================================= %>
Subscriber DB Import
<% if request("step") = "" or request("step") = "0" then %>|
Import Subscribers from another Database.
|
|
Please wait while the DB import script processes the data, this could take several minutes. Once completed, a confirmation message will be displayed with the results
of the import. Only Errors will appear on the page as they occur.
|
<%=request("description")%>
<%=rcdCnt%> Records Found
Bad DB Import Only
| Import Record | Error |
| <%= subName & " " & rsSQL(emailFldStr)%> | <%=mlRecError%> |
| There were no errors. |
|
Subscriber
DB Import Results
|
|
|
|
Subscriber
import completed in <%=DateDiff("s", start, Now)%> seconds.
<%=addCount%> successful subscriptions to "<%=mlListName%>" out of <%=totCount%> total import Records. <%=errCount%> errors (not subscribed, listed above). <%=dupCount%> duplicate records. <%=emlCount%> invalid e-mails. <%=blkCount%> blocked domains. <%=msgCount%> invalid Format types. <%=dateCount%> invalid Subscribe dates. |
|
Subscriber DB Import v1.0 Lane Williams |