Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Shaun E on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Translating MS Access procedures into SQL Server stored procedures

Status
Not open for further replies.

GSMike

Programmer
Feb 7, 2001
143
US
Does anyone have any experience coverting MS Access VBA procedures (Sub's, Functions) into SQL Server Stored procedures??
How does VBA translate into Transact SQL? Is it fairly congruent, or are the differences huge?
Thank you for your help.
:)
 
The differences are fairly huge. T-SQL is not as rich in built-in functions as VB.

More importantly, the difference is in approach. Whereas in VB you might tend to think of working on rows individually, in T-SQL the goal is to act on sets of data. Robert Bradley
Coming Soon:
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top