May 28, 2008 at 1:19 pm
Comments posted to this topic are about the item usp_createsnapshot
Wilfred
The best things in life are the simple things
July 8, 2008 at 8:48 pm
Snapshots are supported on Developer Edition, not just Enterprise Edition.
Also, the call to master..xp_regread doesn't work with my x64 install. Can't find the path in the registry.
July 9, 2008 at 1:58 am
Thanks for your reply. Just extend the edition check to:
/*
Snapshots are only supported on Developer and Enterprise editions
*/
if CAST(serverproperty('Edition') AS VARCHAR) not like 'Enterprise%'
and CAST(serverproperty('Edition') AS VARCHAR) not like 'Developer%'
begin
if @verbose = 1
raiserror('This SQL Server edition does not support snapshots',10,1)
return 1
end
(I'll post an updated version later)
I don't know why the registry check isn't working on your server. Do you have a different instancename? Have you checked your registry?
Wilfred
The best things in life are the simple things
July 9, 2008 at 4:36 am
Wilfred van Dijk (7/9/2008)
I don't know why the registry check isn't working on your server. Do you have a different instancename? Have you checked your registry?
It's a standard default instance install.
I've checked and there is no node for HKEY_LOCAL_MACHINE\Microsoft\Microsoft SQL Server\MSSQL.1
July 14, 2008 at 6:17 am
Try this key:
Set@RegPath = 'SOFTWARE\Microsoft\Microsoft SQL Server\' + @SQLInstance + '\Setup'
EXECmaster..xp_regread 'HKEY_LOCAL_MACHINE', @RegPath, 'SQLDataRoot', @value=@DataPath OUTPUT
Wilfred
The best things in life are the simple things
July 20, 2008 at 5:08 pm
Sorry, I made typo in my previous post.
There are no instances nodes under HKLM\Software\Microsoft\Microsoft SQL Server.
However, I did find it under:
HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Microsoft SQL Server\MSSQL.1
It would appear that the 32bit version of SQL2005 was installed on the 64bit OS, which is why it got confused.
Will have to check which media was used for the install, because I thought it was just the standard MSDN DVD installer which should hopefully have installed the right edition.
Viewing 6 posts - 1 through 5 (of 5 total)
You must be logged in to reply to this topic. Login to reply