Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试通过输入以下内容对我的数据库进行完整备份:
BACKUP DATABASE 10997_diamondtransportinccom TO DISK = 'D:\10997diamond.BAK';
但它给了我以下错误:
消息 102,级别 15,状态 1,第 1 行 “10997”附近的语法不正确。
请指教。谢谢。
应该:
BACKUP DATABASE [10997_diamondtransportinccom] TO DISK = 'D:\10997diamond.BAK'
[注:方括号]
见标识符
I wanna build a Class to parse List<T> to/from String using Gson:
List<T>
String
private static class ListParser<T> { Gson gson = new Gson();