Viewing 10 posts - 1 through 10 (of 10 total)
Check out GeoNames:
January 12, 2012 at 6:47 am
Can't see anything wrong with it. Make sure you are running this on SQL 2008?!? Also make sure Filestream is enabled for the installation and server properties.
January 12, 2012 at 6:01 am
Try
CREATE DATABASE Database1 ON
(FILENAME = N'C:\Temp\Database1.mdf')
FOR ATTACH_REBUILD_LOG
Rob
January 12, 2012 at 3:49 am
Sounds like you are expecting the data files to automaticallly shrink, which does not happen unless explicitly set at the database level or requested on an ad-hoc bases.
Try DBCC SHRINKFILE
Use...
January 12, 2012 at 1:54 am
Consider:
Clustering - Provide failover to another server should the active server running the database fail (not including SAN). This is not a full DR solution (unless you have a mirrored...
January 11, 2012 at 8:22 am
Avoid dynamic SQL, it is not clear here why you need to use it?
Also you do not need to place another EXEC[UTE] as part of the dynamic SQL you are...
January 11, 2012 at 5:21 am
Fully Qualified Domain Name (e.g. http://www.google.com)
January 11, 2012 at 4:53 am
To use Schema Compare you will need Visual Studio 2010 Ultimate or Database edition.
Rob
January 11, 2012 at 3:52 am
I would remove the dependency on the DHCP server and assign static IP addresses for all nodes on the cluster. Keep DHCP for the clients 😉
Robert
January 9, 2012 at 3:48 am
You should be able to run sp_depends for all procedures and then query the information schema from these results to find tables and columns that no longer exist.
Rob
January 9, 2012 at 3:11 am
Viewing 10 posts - 1 through 10 (of 10 total)