Should be something like this:
DMZ host is: 192.168.20.101
Inside host is: 192.168.10.20
I suppose SQL Port is TCP/1433 if not just replace it with the right port.
Sees that TCP 445 is need also
# Permits access from the DMZ host 192.168.20.101 to inside host 192.168.10.20 on port 1433 and 445. All other traffic from the DMZ outgoing will be blocked. This does not affect traffic comming from the outside interface (Internet) to the DMZ !
access-list dmz permit tcp host 192.168.20.101 host 192.168.10.20 eq 1433
access-list dmz permit tcp host 192.168.20.101 host 192.168.10.20 eq 445
access-group dmz in interface dmz
# Syntax to disable NAT between DMZ and insdie Interface
# static (inside,dmz) InsideNet InsideNet netmask InsideSubnetMask 0 0
static (inside,dmz) 192.168.10.0 192.168.10.0 netmask 255.255.255.0
# This command will resets all transaltions, take care during working hours. But this is needed to apply static changes !
Clear xlate
sincerely
Patrick