Hello, I am new to GAMS. I am trying to pass arguments from an SQL Server Database using the below code
$call sql2gms C="Driver={SQL Server}; Server=LAPTOP-XXXX; Database=XXXXXX; Uid=sa; Pwd=XXXXXX;" Q="SELECT topsis ,topsis ,topsis from pf_topsis" O=topsis.inc a=topsis> %system.nullfile%
parameter risk(i,j) risk /
$include topsis.inc
/;
Unfortunately the inc file contains dots(.) between the first and the second column and therefore gams cannot read the file. I have attached the .inc file.
topsis.txt (983 Bytes)
Can anyone help me?