Apr 13 2017
06:31 AM
- last edited on
Jul 31 2018
11:52 AM
by
TechCommunityAP
Apr 13 2017
06:31 AM
- last edited on
Jul 31 2018
11:52 AM
by
TechCommunityAP
I am getting an error that seemingly indicates that I'm trying to use linked server or cross-database query when I am in no way trying to.
I've opened a stackexchange question w/ full details but no one has seen this scenario.
Reference to database and/or server name in 'Azure.dbo.XXX' is not supported in this version of SQL Server
(where XXX is my table name)
See full details on StackExchange but basically I can SELECT, INSERT, and UPDATE to this particular table but cannot DELETE from it. When I try to run a DELETE statement, I receive the error above.
Have tried disabling TRIGGERs, have tried various combinations of schema/database/tablename in the FROM clause.
Pulling my hair out here.
Apr 14 2017 06:56 AM
SolutionDavid from MSDN forum put me on the right track:
To see if there are FK relationships w/ DELETE CASCADE:
select * from INFORMATION_SCHEMA.REFERENTIAL_CONSTRAINTS where DELETE_RULE ='CASCADE'
Apr 14 2017 09:57 AM
Hi Robert, thank you for posting the solution! I'm sure other users will have the same question.
Jun 19 2017 01:15 AM
Msg 40515, Level 15, State 1, Line 16
Reference to database and/or server name in 'Source.dbo.kiran' is not supported in this version of SQL Server.
Please solve it
Jun 19 2017 01:16 AM
Jun 19 2017 01:16 AM
Jun 19 2017 01:17 AM
Dec 07 2017 06:51 AM
Hi all,
I (still) have the same issue when using BCP.EXE. Locally, it works:
bcp "select * from myDB.dbo.myTable" queryout mytable.csv -S ServerName -c -T
When executing the same against SQL Azure, the following error results:
Error = [Microsoft][ODBC Driver 13 for SQL Server][SQL Server]Reference to database and/or server name in 'myDB.dbo.myTable' is not supported in this version of SQL Server.
Hope, this will be possible in near future...? Thx.
May 08 2018 07:45 AM
Hi Tony,
I ran into the same issue using the bcp utility. I discovered there is another flag which may be used to specify the database: -d MyDatabaseName.
Jan 07 2020 06:03 AM
Apr 14 2017 06:56 AM
SolutionDavid from MSDN forum put me on the right track:
To see if there are FK relationships w/ DELETE CASCADE:
select * from INFORMATION_SCHEMA.REFERENTIAL_CONSTRAINTS where DELETE_RULE ='CASCADE'