I want to copy data from SQL Server A to SQL Server B; so I have query statement like:
INSERT INTO ServerA_Name.db_name.table_name
SELECT * FROM ServerB_Name.db_name.table_name where date >= GETDATE()
However the ServerA' name has a illegal character: '-' (ex: A-01) and I can't change the ServerA' name since it would cause other potential problem. So I got the: Incorrect syntax near '-'. error.... Is there a good way to solve this issue?