Steve: I had to use SQL Server recently and I found it to be a pain with things like this, especially when I have next-to-no experience with it. I can't really suggest where to look to fix your issues directly, but two things I found very useful in working out my own issues:
-- write a script in ASP (if you can) that performs the same operations on this table as you're trying to do in PHP to see if there's any problem interfacing with this table over web techs (for some reason I did) -- if you don't already have it, try accessing the SQL Server using SQL Server Management Studio (tis free from MSDN) and have a play. There's some nice tools in there to check connections, permissions and such, plus you can run queries directly through the GUI and get feedback. I think there's also extensive logging you can access too so that might show up weirdness if things don't behave the way you'd expect. Sorry I can't help much more than that! MOU 2008/11/19 steve miller <[EMAIL PROTECTED]>: > Hi all, > > We are using php to connect to a local MS SQL database, and all seems to be > fine. > We are connecting to several tables within the same database, and are able > to insert, update, delete, etc. > However, there is one table that refuses to let us update, and we can not > figure out why. > > We get no errors from the script, but no records updated. > If I echo out the sql statement, connect to the database with Access as the > same user, and copy/paste the query into Access, the update works. > > We have looked at the table in every way we know how to look, and we can't > find anything that would stop php from doing updates. > > The table is part of a purchased application and is a very important one, so > we are wondering if there could be some restrictions defined somewhere. > Any thoughts on where to look? > Any special log somewhere that might tell us why the updates aren't working? > > Any help appreciated. > steve > > > > > > ____ • The WDVL Discussion List from WDVL.COM • ____ > To Join wdvltalk, Send An Email To: > mailto:[EMAIL PROTECTED] or > use the web interface > http://e-newsletters.internet.com/discussionlists.html/ > Send Your Posts To: [email protected] > To change subscription settings, add a password or view the web interface: > http://intm-dl.sparklist.com/read/?forum=wdvltalk > > ________________ http://www.wdvl.com _______________________ > > You are currently subscribed to wdvltalk as: [EMAIL PROTECTED] > To unsubscribe send a blank email to > [EMAIL PROTECTED] > To unsubscribe via postal mail, please contact us at: > Jupitermedia Corp. > Attn: Discussion List Management > 475 Park Avenue South > New York, NY 10016 > > Please include the email address which you have been contacted with. > ____ � The WDVL Discussion List from WDVL.COM � ____ To Join wdvltalk, Send An Email To: mailto:[EMAIL PROTECTED] or use the web interface http://e-newsletters.internet.com/discussionlists.html/ Send Your Posts To: [email protected] To change subscription settings, add a password or view the web interface: http://intm-dl.sparklist.com/read/?forum=wdvltalk ________________ http://www.wdvl.com _______________________ You are currently subscribed to wdvltalk as: [EMAIL PROTECTED] To unsubscribe send a blank email to [EMAIL PROTECTED] To unsubscribe via postal mail, please contact us at: Jupitermedia Corp. Attn: Discussion List Management 475 Park Avenue South New York, NY 10016 Please include the email address which you have been contacted with.
