Do you know why below shell script just generates the output file named 'Loading_EMP.sql' instead of 'Loading_1_EMP.sql'?
#!/bin/bash
JOBID="1"
TABLE="EMP"
echo 'test'  > Loading_$JOBID_$TABLE.sql; 
# Output
Loading_EMP.sql
# Expected Output
Loading_1_EMP.sql
 
     
     
     
    