SQL Server 2012实例正在 <!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="initial-scale=1.0, user-scalable=no">
<meta charset="utf-8">
<title>Simple Polylines</title>
<style>
html, body {
height: 100%;
margin: 0;
padding: 0;
}
#map {
height: 100%;
}
</style>
</head>
<body>
<div id="map"></div>
<script>
// This example creates a 2-pixel-wide red polyline showing the path of William
// Kingsford Smith's first trans-Pacific flight between Oakland, CA, and
// Brisbane, Australia.
function initMap() {
var map = new google.maps.Map(document.getElementById('map'), {
zoom: 3,
center: {lat: 0, lng: -180},
mapTypeId: google.maps.MapTypeId.TERRAIN
});
var flightPlanCoordinates = [
{lat: 37.772, lng: -122.214},
{lat: 21.291, lng: -157.821},
{lat: -18.142, lng: 178.431},
{lat: -27.467, lng: 153.027}
];
var flightPath = new google.maps.Polyline({
path: flightPlanCoordinates,
geodesic: true,
strokeColor: '#FF0000',
strokeOpacity: 1.0,
strokeWeight: 2
});
flightPath.setMap(map);
}
</script>
<script async defer
src="https://maps.googleapis.com/maps/api/js?key=YOUR_API_KEY&callback=initMap">
</script>
</body>
</html>
上运行。当我在网络上的另一台机器上附加数据库时,我无法附加数据库。
如果我登录MyDatabaseServer
,请打开SSMS,连接到MyMachine
并运行以下代码, FAILS 。< / p>
如果我登录MyDatabaseServer\MyDB
,请打开SSMS,连接到MyDatabaseServer
并运行以下代码, WORKS 。< / p>
我需要它在DB服务器本身以外的其他机器上运行。我该怎么办???
注1:我跑的代码:
MyDatabaseServer\MyDB
它返回:
无法打开物理文件“\ MyFileserver \ MyFolder \ MyDatabase.MDF”。操作系统错误5:“5(访问被拒绝。)”。
注意2:运行SSMS的帐户和运行SQL Server的服务帐户都具有CREATE DATABASE MyDatabase ON
( FILENAME = N'\\MyFileserver\MyFolder\MyDatabase.MDF'),
( FILENAME = N'\\MyFileserver\MyFolder\MyDatabase_Log.LDF')
FOR ATTACH
以及\\\\MyFileserver\\MyFolder\\
的完全控制权限
注3:我可以连接到两台机器SSMS上的数据库MyDatabase.MDF
。
注意4:它是SQL Server 2012. MyDatabaseServer\MyDB
是Windows Server 2012. MyDatabaseServer
是Windows 7。
答案 0 :(得分:1)
SQL Server数据库必须与安装服务器位于同一台计算机上