bad interpreter: Permission denied

Hi

I am running a script:

#!bin/bash
set -x
echo"select *  from celldatamap;" || sqlcsv -v -h -s ',' -d MTNSA11G -u datasafe -p datasafe > andrea.csv

When I run my script

./tablescript.sh

I get the following error:

 
$ ./tablescript.sh
bash: ./tablescript.sh: bin/bash: bad interpreter: Permission denied

I have read up on this, I'm not sure how to solve it though, my script has full permissions.

Please help

Change:

#!bin/bash 

to:

#!/bin/bash 

Hi,

Replace your first line with

#!/bin/bash

Thank you, it has removed that issue ... So silly of me not to spot that.