I have a program that connects to an Oracle database and performs operations on it. I now want to adapt that program to also support an SQL Server database.
You're probably looking forwith (updlock, holdlock). This will make a select grab an exclusive lock, which is required for updates, instead of a shared lock. The holdlock hint tells SQL Server to keep the lock until the transaction ends.