Ask a Question related to ASP, Design and Development.
-
chowda #1
Provider error '80004005' Unspecified error - ARRRGGGHHH!!!!!
I have searched usenet & dev sites to no avail although many have had
similar problems, reckon its an issue with DSN but not sure.. error
occurs intermittently (but more often than not) heres the biz:
ASP querying SQL Server 7.0 via IE5.5
Provider error '80004005'
Unspecified error
when launching asp:
Set connInc= server.CreateObject("ADODB.Connection")
connInc.Open "DSN=db_nsso;User ID=userid;Password=passwd"
rsInc.Open strSQL, connInc
where strSQL is a working SQL string based upon variables sourced from
dropdown lists in a previous asp page. The SQL string works fine
directly on the SQLServer Query Analyzer.
I know there are issues if User ID & password are not mentioned but as
you can see they are, the strSQL is a rather complex one, summarising
data from several tables using variables .The error only
intermittently occurs when selecting a specific set of variables. I
have trawled the data for incongruencies, null values, values that
could be named variables etc to no avail
Is it an issue with the DSN>? if so what should i use instead?
Its a good job I'm bald cause I wouldnt have any hair left by now so
any help muchas gracias.
chowda Guest
-
Unspecified error (80004005) - viewing live asp pages
Hi I am having problems viewing my asp pages. with the following error message. I can view the page once but when I go back to Dreamweaver and... -
Unspecified error '80004005'
Hi , Please help!!!!! I got the same problem as well....... I encounter the problem when I upload a large excel file(more than 5000 records) to... -
Unspecified error provider -2147467259
Hi There, can someone tell me if this error relates to the MDAC version installed on a particular machine? '--- Error message Unspecified... -
Unspecified Error (80004005) executing Request.Form()
There is a limit to the amount of data you can post through a form. For a file of that size you probably need to treat it as an upload. ... -
Microsoft OLE DB Provider for ODBC Drivers error '80004005' Error
Hi folks - i've got a windows 2000 server (SP3) i've run the IIS lockdown tool on it and set for dynamic websites - all the static pages within the... -
Ray at #2
Re: Provider error '80004005' Unspecified error - ARRRGGGHHH!!!!!
What happens when you switch from the DSN to using an ordinary OLEDB
connection string? [url]www.connectionstrings.com[/url]
Ray at work
"chowda" <paulkeillersinclair@yahoo.co.uk> wrote in message
news:9c8c7287.0310210429.4ca43d08@posting.google.c om...> I have searched usenet & dev sites to no avail although many have had
> similar problems, reckon its an issue with DSN but not sure.. error
> occurs intermittently (but more often than not) heres the biz:
>
> ASP querying SQL Server 7.0 via IE5.5
>
>
> Provider error '80004005'
>
> Unspecified error
>
> when launching asp:
>
> Set connInc= server.CreateObject("ADODB.Connection")
> connInc.Open "DSN=db_nsso;User ID=userid;Password=passwd"
> rsInc.Open strSQL, connInc
>
>
> where strSQL is a working SQL string based upon variables sourced from
> dropdown lists in a previous asp page. The SQL string works fine
> directly on the SQLServer Query Analyzer.
> I know there are issues if User ID & password are not mentioned but as
> you can see they are, the strSQL is a rather complex one, summarising
> data from several tables using variables .The error only
> intermittently occurs when selecting a specific set of variables. I
> have trawled the data for incongruencies, null values, values that
> could be named variables etc to no avail
> Is it an issue with the DSN>? if so what should i use instead?
>
> Its a good job I'm bald cause I wouldnt have any hair left by now so
> any help muchas gracias.
Ray at Guest
-
Aaron Bertrand - MVP #3
Re: Provider error '80004005' Unspecified error - ARRRGGGHHH!!!!!
Don't use a DSN. See [url]www.aspfaq.com/2126[/url]
"chowda" <paulkeillersinclair@yahoo.co.uk> wrote in message
news:9c8c7287.0310210429.4ca43d08@posting.google.c om...> I have searched usenet & dev sites to no avail although many have had
> similar problems, reckon its an issue with DSN but not sure.. error
> occurs intermittently (but more often than not) heres the biz:
>
> ASP querying SQL Server 7.0 via IE5.5
>
>
> Provider error '80004005'
>
> Unspecified error
>
> when launching asp:
>
> Set connInc= server.CreateObject("ADODB.Connection")
> connInc.Open "DSN=db_nsso;User ID=userid;Password=passwd"
> rsInc.Open strSQL, connInc
>
>
> where strSQL is a working SQL string based upon variables sourced from
> dropdown lists in a previous asp page. The SQL string works fine
> directly on the SQLServer Query Analyzer.
> I know there are issues if User ID & password are not mentioned but as
> you can see they are, the strSQL is a rather complex one, summarising
> data from several tables using variables .The error only
> intermittently occurs when selecting a specific set of variables. I
> have trawled the data for incongruencies, null values, values that
> could be named variables etc to no avail
> Is it an issue with the DSN>? if so what should i use instead?
>
> Its a good job I'm bald cause I wouldnt have any hair left by now so
> any help muchas gracias.
Aaron Bertrand - MVP Guest
-
Bob Barrows #4
Re: Provider error '80004005' Unspecified error - ARRRGGGHHH!!!!!
chowda wrote:
I suspect you may have a reserved word problem. Check here> I have searched usenet & dev sites to no avail although many have had
> similar problems, reckon its an issue with DSN but not sure.. error
> occurs intermittently (but more often than not) heres the biz:
>
> ASP querying SQL Server 7.0 via IE5.5
>
>
> Provider error '80004005'
>
> Unspecified error
>
([url]http://www.aspfaq.com/show.asp?id=2080[/url]) for a list of reserved words and
see if you have used any of them for column names. If you have, your first
choice should be to change the column names that are reserved words. If you
cannot change them, then you must surround them with brackets [] when using
them in dynamic sql called via ADO.
HTH,
Bob Barrows
--
Microsoft MVP -- ASP/ASP.NET
Please reply to the newsgroup. The email account listed in my From
header is my spam trap, so I don't check it very often. You will get a
quicker response by posting to the newsgroup.
Bob Barrows Guest
-
chowda #5
Re: Provider error '80004005' Unspecified error - ARRRGGGHHH!!!!!
Thanks for your posts folks,
Unfortunately I can only use the named DSN cause I'm sat on a large
internal network and must adhere to their specific conformance rules.
I have renamed a reserved word that i did find but still get the
error.thanks for that link.
I'm at a dead end with this one I think.....................
many thanks again
chowda Guest



Reply With Quote

