import - Why am I getting this error with BCP? -
i want import table while keeping identity column.
in cmd, enter:
bcp database.edg.hello in c:\users\tech\downloads\p.csv -c -e - s349024ijfpok.windows.net\mssqlserver -t
which returns:
a valid table name required in, out or format options
is issue syntax?
you need brackets database information. use colon "
path sure. complete command:
bcp [database].[edg].[hello] in "c:\users\tech\downloads\p.csv" -c -e -s 349024ijfpok.windows.net\mssqlserver -t
Comments
Post a Comment