Beefy Boxes and Bandwidth Generously Provided by pair Networks
Syntactic Confectionery Delight
 
PerlMonks  

Re^2: Perl Query Locks A MsSQL Database

by EEddieEmm (Initiate)
on Jan 23, 2013 at 18:43 UTC ( [id://1014984]=note: print w/replies, xml ) Need Help??


in reply to Re: Perl Query Locks A MsSQL Database
in thread Perl Query Locks A MsSQL Database

I can update the database directly. As a matter of of fact, that's how I "get around" the issue at the moment. I read the log and when an update is needed, I'll go into the database with Microsoft SQL Server Management Studio, and make the update with the data from the last log entry. Sucks, but it works.

Being new to DBI, I didn't know how to do this. You are right, might be worth a look although I know where the problem is. Just don't know why.

I was thinking along these lines myself. My plan was to alter the code to place the returned data into an array. Then read through that and make updates as needed. The while loop might be keeping the SELECT active somehow - don't know.

  • Comment on Re^2: Perl Query Locks A MsSQL Database

Replies are listed 'Best First'.
Re^3: Perl Query Locks A MsSQL Database
by Corion (Patriarch) on Jan 23, 2013 at 18:47 UTC

    Actually, yes, your $GET_DB_DATA statement handle will be active and maybe MySQLMSSQL prevents other queries from updating the table. I recommend reading all data before trying updates.

    Update: moritz spotted the wrong database

      That was it.

      I put all the data returned from the SELECT query into a 2 dimensional array, processed that and everything went well. Thanks for your help!

      ~Ed

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1014984]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others musing on the Monastery: (3)
As of 2024-04-19 21:41 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found