Hi
Odd one here, I have a local version of SQL running on my laptop for
demos, been working fine for years yet yesterday I suddenly get an
error "Invalid Conection Parameter" running a sproc using the
following connection string (Its an Access 2002 App to SQL 2000)
strConnect = "Network=DBMSSO CN;Server=" & DB_Server & ";DRIVER=SQ L
Server;UID=abc; PWD=def"
Works fine if I use the server based SQL resource
So I change it to be the following and it starts working ????
strConnect = "Server=" & DB_Server & ";DRIVER=SQ L
Server;UID=abc; PWD=def"
So it started not liking the 'Network=DBMSSO CN' part but both the
datbases have TCP/IP and Named Pipes setup as network protocols and
bot have not chnaged config for years
I did install SP2 for XP a few weeks ago but I'm sure I have run it
since (mind you I wish I'd never done SP2 with all the unasked for
'extras' MS dump on your PC but thats another thread)
Thanks all
shaun
Odd one here, I have a local version of SQL running on my laptop for
demos, been working fine for years yet yesterday I suddenly get an
error "Invalid Conection Parameter" running a sproc using the
following connection string (Its an Access 2002 App to SQL 2000)
strConnect = "Network=DBMSSO CN;Server=" & DB_Server & ";DRIVER=SQ L
Server;UID=abc; PWD=def"
Works fine if I use the server based SQL resource
So I change it to be the following and it starts working ????
strConnect = "Server=" & DB_Server & ";DRIVER=SQ L
Server;UID=abc; PWD=def"
So it started not liking the 'Network=DBMSSO CN' part but both the
datbases have TCP/IP and Named Pipes setup as network protocols and
bot have not chnaged config for years
I did install SP2 for XP a few weeks ago but I'm sure I have run it
since (mind you I wish I'd never done SP2 with all the unasked for
'extras' MS dump on your PC but thats another thread)
Thanks all
shaun
Comment