Weird License Issue (plus Update Blocking)
Jul 20, 2005
SQL Server 2000 Enterprise Edition
Access 2000 Front End
One of our clients has recently been experiencing problems with an app
that has run satisfactorily (though slowly) for some time. To
overcome the slowness, they have installed a new server with SQL
Server 2000 Enterprise Edition with 'Log Shipping' enabled (to provide
a subsidiary database on which reports can be run) but although the
speed issue is resolved, there are hitherto unencountered blocking and
locking issues when running updates on a particular table (updates
time out, typically when running on > 3 client machines, but don't
when running on < 3 client machines).
Having exhausted most possibilities, we wondered if it was a licensing
issue, so we fired up the License Server.
This appears to be trying to tell us that SQL Server 7.0 was installed
sometime in July. There is no mention made of SQL 2000.
In fact, the machine in question has never had SQL Server 7.0
installed, and SQL 2000 was installed earlier this month, not in July.
Anyone any ideas? For what it's worth, I have scripted the table and
the blocking stored procedures below.
Many thanks in advance
Edward
/* Table */
/****** Object: Table [recall].[tblApplicant_Callback] Script
Date: 12/09/2003 12:15:19 ******/
if exists (select * from dbo.sysobjects where id =
object_id(N'[recall].[tblApplicant_Callback]') and OBJECTPROPERTY(id,
N'IsUserTable') = 1)
drop table [recall].[tblApplicant_Callback]
GO
/****** Object: Table [recall].[tblApplicant_Callback] Script
Date: 12/09/2003 12:15:22 ******/
CREATE TABLE [recall].[tblApplicant_Callback] (
[fldCallbackID] [int] IDENTITY (1, 1) NOT NULL ,
[fldCampaignID] [int] NULL ,
[fldApplicantID] [int] NULL ,
[fldApplicantCampaignID] [int] NULL ,
[fldScriptID] [int] NULL ,
[fldCallBack] [datetime] NULL ,
[fldTitle] [varchar] (4) COLLATE SQL_Latin1_General_CP1_CI_AS NULL ,
[fldSurname] [varchar] (50) COLLATE SQL_Latin1_General_CP1_CI_AS NULL
,
[fldFirstName] [varchar] (50) COLLATE SQL_Latin1_General_CP1_CI_AS
NULL ,
[fldPostCode] [varchar] (10) COLLATE SQL_Latin1_General_CP1_CI_AS
NULL ,
[fldAddress1] [varchar] (50) COLLATE SQL_Latin1_General_CP1_CI_AS
NULL ,
[fldAddress2] [varchar] (50) COLLATE SQL_Latin1_General_CP1_CI_AS
NULL ,
[fldTown] [varchar] (40) COLLATE SQL_Latin1_General_CP1_CI_AS NULL ,
[fldCounty] [varchar] (40) COLLATE SQL_Latin1_General_CP1_CI_AS NULL
,
[fldTelephoneNo_1] [varchar] (20) COLLATE
SQL_Latin1_General_CP1_CI_AS NULL ,
[fldTelephoneNo_2] [varchar] (20) COLLATE
SQL_Latin1_General_CP1_CI_AS NULL ,
[fldTelephoneNo_3] [varchar] (20) COLLATE
SQL_Latin1_General_CP1_CI_AS NULL ,
[fldNotes] [text] COLLATE SQL_Latin1_General_CP1_CI_AS NULL ,
[fldReason] [varchar] (20) COLLATE SQL_Latin1_General_CP1_CI_AS NULL
,
[fldAttempts] [smallint] NULL ,
[fldInvited] [tinyint] NULL ,
[fldResult] [tinyint] NULL ,
[fldEventSession] [int] NULL ,
[fldUnabletoAttend] [bit] NOT NULL ,
[fldEntered] [datetime] NULL ,
[fldEnteredBy] [varchar] (6) COLLATE SQL_Latin1_General_CP1_CI_AS
NULL ,
[fldLock] [bit] NOT NULL ,
[upsize_ts] [timestamp] NULL ,
[fldCallPeriod1] [tinyint] NOT NULL ,
[fldCallPeriod1_From] [datetime] NULL ,
[fldCallPeriod1_To] [datetime] NULL ,
[fldCallPeriod2] [tinyint] NOT NULL ,
[fldCallPeriod2_From] [datetime] NULL ,
[fldCallPeriod2_To] [datetime] NULL ,
[fldLastedCalled] [datetime] NULL ,
[fldDeadlineDate] [datetime] NULL ,
[fldFax] [char] (20) COLLATE SQL_Latin1_General_CP1_CI_AS NULL ,
[fldMobile] [char] (20) COLLATE SQL_Latin1_General_CP1_CI_AS NULL ,
[fldEmail] [char] (100) COLLATE SQL_Latin1_General_CP1_CI_AS NULL ,
[fldHouseNo] [varchar] (25) COLLATE SQL_Latin1_General_CP1_CI_AS NULL
,
[fldLockDate] [datetime] NULL
) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY]
GO
ALTER TABLE [recall].[tblApplicant_Callback] WITH NOCHECK ADD
CONSTRAINT [aaaaatblApplicant_Callback_PK] PRIMARY KEY CLUSTERED
(
[fldCallbackID]
) WITH FILLFACTOR = 90 ON [PRIMARY]
GO
ALTER TABLE [recall].[tblApplicant_Callback] WITH NOCHECK ADD
CONSTRAINT [DF__Temporary__fldAt__3FD07829] DEFAULT (0) FOR
[fldAttempts],
CONSTRAINT [DF_tblApplicant_Callback_fldUnabletoAttend] DEFAULT (0)
FOR [fldUnabletoAttend],
CONSTRAINT [DF_tblApplicant_Callback_fldLock] DEFAULT (0) FOR
[fldLock],
CONSTRAINT [DF_tblApplicant_Callback_fldCallPeriod1] DEFAULT (1) FOR
[fldCallPeriod1],
CONSTRAINT [DF_tblApplicant_Callback_fldCallPeriod2] DEFAULT (1) FOR
[fldCallPeriod2]
GO
CREATE INDEX [fldFirstName] ON
[recall].[tblApplicant_Callback]([fldFirstName]) WITH FILLFACTOR = 90
ON [PRIMARY]
GO
CREATE INDEX [fldSurname] ON
[recall].[tblApplicant_Callback]([fldSurname]) WITH FILLFACTOR = 90
ON [PRIMARY]
GO
CREATE INDEX [fldCallPeriod1_From] ON
[recall].[tblApplicant_Callback]([fldCallPeriod1_From]) WITH
FILLFACTOR = 90 ON [PRIMARY]
GO
CREATE INDEX [fldCallPeriod1_To] ON
[recall].[tblApplicant_Callback]([fldCallPeriod1_To]) WITH FILLFACTOR
= 90 ON [PRIMARY]
GO
CREATE INDEX [fldCallPeriod2_From] ON
[recall].[tblApplicant_Callback]([fldCallPeriod2_From]) WITH
FILLFACTOR = 90 ON [PRIMARY]
GO
CREATE INDEX [fldCallPeriod2_To] ON
[recall].[tblApplicant_Callback]([fldCallPeriod2_To]) WITH FILLFACTOR
= 90 ON [PRIMARY]
GO
CREATE INDEX [fldCallPeriod1] ON
[recall].[tblApplicant_Callback]([fldCallPeriod1]) ON [PRIMARY]
GO
CREATE INDEX [fldCallPeriod2] ON
[recall].[tblApplicant_Callback]([fldCallPeriod2]) ON [PRIMARY]
GO
/* Stored Procedure 1 */
CREATE PROCEDURE recall_Update_ResumeCallback_Changes
@CallbackID int,
@CampIDint,
@CallBackDatedatetime,
@Titlevarchar(4),
@FirstNamevarchar(50),
@Surnamevarchar(50),
@Postcodevarchar(10),
@HomeTelvarchar(20),
@Mobilevarchar(20),
@WorkTelvarchar(20),
@Notestext,
@CallPeriod1tinyint,
@CallPeriod1_Fromdatetime,
@CallPeriod1_Todatetime,
@CallPeriod2tinyint,
@CallPeriod2_Fromdatetime,
@CallPeriod2_Todatetime,
@LastCalledDatedatetime,
@Attemptssmallint,
@HouseNovarchar(25)
AS
BEGIN
UPDATE recall.tblApplicant_Callback with (rowlock)
SET
fldCampaignID=@CampID,
fldCallBack=@CallBackDate,
fldTitle=@Title,
fldFirstName=@FirstName,
fldSurname=@Surname,
fldPostcode=@Postcode,
fldTelephoneNo_1=@HomeTel,
fldTelephoneNo_2=@Mobile,
fldTelephoneNo_3=@WorkTel,
fldNotes=@Notes,
fldCallPeriod1=@CallPeriod1,
fldCallPeriod1_From=@CallPeriod1_From,
fldCallPeriod1_To=@CallPeriod1_To,
fldCallPeriod2=@CallPeriod2,
fldCallPeriod2_From=@CallPeriod2_From,
fldCallPeriod2_To=@CallPeriod2_To,
fldLastedCalled=@LastCalledDate,
fldAttempts=@Attempts,
fldHouseNo=@HouseNo
WHERE (fldCallbackID= @CallbackID)
END
GO
/* Stored Procedure 2 */
CREATE PROCEDURE recall_Update_Campaign_Telescreening_Resume_Lock
@CallbackID int,
@Lock bit
AS
BEGIN
UPDATE recall.tblApplicant_Callback with (rowlock)
SET fldLock = @Lock
WHERE (fldCallbackID = @CallbackID)
END
GO
View 2 Replies
ADVERTISEMENT
Mar 10, 2003
Recently a production server suffered a critical blocking period and I wanted to know if I could solicit some input. It seems that a stored procedure was in the middle of recompiling while and auto update statistics started. This caused blocking for like an hour on the
single object (stored procedure) that was originally called. The table that the update occurred on and that the
stored procedure is reading form is quite large. It is 2 mil rows and about 140 columns wide. Some info from
sysprocesses is below. The table alone takes up almost 4GB of space, when looking at sp_spaceused. I have some
questions.
1. Can the update statistics for a '_WA%' stats cause
blocking on a table?
2. Does an update stats on an index survive a restart of
SQL server? We tried restarting, but the blocking did not
end.
3. If the stored procedure is running under a compile, can
the server automatically start an update stats and cause
the stored procedure to wait?
4. Can the server automatically start an update stats on
more than one column stats at a time, causing one to be
blocked by the other?
5. We had never seen this issue before going to SQL2K
clustering. Is this something specific to SQL2K and not
SQL7 ?
Thanks for your input.
John Lee
This is the lock info for the blocking processes.
spid dbid ObjId IndId Type Resource Mode Status name
------ ------ ----------- ------ ---- ---------------- -------- ------ -------------------------
142 7 2 1 KEY (6f00035ef42b) S GRANT sysindexes
142 7 2 1 KEY (6f00035ef42b) S GRANT sysindexes
142 7 421576540 0 TAB Sch-S GRANT tJob
142 7 1141579105 0 TAB Sch-S GRANT tPatient_info
142 7 1141579105 0 TAB [UPD-STATS] Sch-M GRANT tPatient_info
142 7 1659921035 0 TAB [COMPILE] X GRANT iDBGetPatInfoRecord
142 7 1659921035 0 TAB Sch-S GRANT iDBGetPatInfoRecord
These are the processes that are being blocked:
spid
------
137
140
Below this is a snapshot of all the SQL processes on the server being blocked.
Save the report and send to the whole database group.
spid kpid blocked waittype waittime lastwaittype waitresource
------ ------ ------- -------- ----------- -------------------------------- -----------------------------
140 4292 142 0x0005 68609 LCK_M_X TAB: 7:1659921035 [[COMPILE]]
137 2576 140 0x0005 64671 LCK_M_X TAB: 7:1659921035 [[COMPILE]]
View 1 Replies
View Related
Oct 13, 2006
I have a VERY Legitmate use to install sql 4 workgroups on a pc without licensing it. I am making a disk image for MANY pcs to be imaged and load licensing after the imaging is completed.
I have been able to do this with Windows XP Professional, MS Office 2003 and a couple non-Ms programs. The information for MS software even came from their KB, so I know what I am doing is legit. I just can't find any information on doing this for my sql app.
Any suggestions??
Respectfully,
Frustrated
"Frustrated"
View 1 Replies
View Related
Oct 20, 2007
Over the past week and a half we started experiencing a sporadic slowdown in our production x64 SQL 2005 Ent. Edition server. Users started complaining of slowness then they started getting timeouts. In looking at sp_who2 and perfmon we saw the following during the slow/frozen periods:
* Dramatic increase in Perfmon Active Transactions
* CPU higher than norm, but not dramatically so
* sp_who2 shows a number of spids in SUSPENDED state (and not running waits)
* no blocking indicated from sp_who2
* active connections slowly increasing
* no disk queuing (or at most some spikes to 1)
After a couple of minutes of this we would then see the following:
* no more spids in SUSPENDED state
* Logins per second spikes dramatically
* Active transactions spikes down to "normal levels"
* CPU goes high then levels out at moderately higher than normal
* active connections slowly decreases back towards normal levels
* large spike in lock wait time
We turned on the Async Auto Update Statistics option (after testing in our staging environment) on the primary database about a week before we saw this problem. By turning it off we can visually see the problem go away by watching the above metrics. So my question is, What metrics can I use to see the "blocking" or resouce locking that is causing these problems?
Anyone?
Thx
Ron
View 3 Replies
View Related
Feb 3, 2015
At one of your client sides we have configured Always on with synchronous mode.Also we have schedule rebuild index and update statistics job which runs in night every alternate day. the issue is there are more then 100 sleeping queries which is blocking update statistics job.
I have to stop update statistics job manually once i come to office manually.
Once I have killed blocking sleeping query but then other sleeping query blocked it and so on.
View 4 Replies
View Related
May 10, 2000
To all,
Can anyone give me the answer?
I want to use DTS to import some data from remote server to my local server.
Every time I get following error message "The license for the installation of Microsoft SQL Server on your source and destination connections does not permit the use DTS to transfer data".
Both my servers are on SP2. Why I have such error? What should I do?
Thanks.
View 1 Replies
View Related
Nov 2, 2000
Hello all,
I need to pick up a SQL Server 7 license, but I am a little confused as to what I need.
I'll be running SQL Server 7 on a web server. I'll be the only one logging to maintain SQL Server. There will be three different apps the run on the server that each will have one to ten databases.
So, what's the minimum license I need? Will the developer's license work?
Any one out there have a license they want to sell - cheap? :)
Thanks....
Michael
jns-michael@home.com
View 1 Replies
View Related
Jun 29, 1999
How do you increase the number of license? With 6.5 we were able to do this through the setup on the CD but it will not let me do this with 7.0? The specific error is SQL Server Error 18460. Logon Failed. The maximum simultaneous user count of 5 license s for this Standard Edition server has been exceeded. I have upgraded the licenses in the License manager for Windows NT but SQL 7.0 does not seem to recognize it.
View 2 Replies
View Related
Dec 31, 2004
Hi,
My company is developing their site with MS SQL which will then be transfered onto another server hosted by our ISP, do I need to purchase a SQL license for that machine - exactly what do I need to purchase.
Any help appreciated!
Thanks,
Sanjay
View 2 Replies
View Related
Oct 9, 2007
New challenge!!!!
I have already installed a SQL Server 2005 cluster with several instances and I want to change the license key to another one.
How can I do this with out having to re-install?
seethem.
View 20 Replies
View Related
Aug 15, 2000
One sql transaction is in rollback state and optimization job is trying to restructure index on the same table that this transaction is using. As a result,
transaction is in 'blocking' state and optimization job is in 'blocked' state. 'Kill process' doesn't do anything. How can this situation be resolved?
View 1 Replies
View Related
Nov 26, 2001
Is it possible that blocking can occur between a select and update statements running at the same time on the same object??thanks for the reply!
Sheila.
View 1 Replies
View Related
Nov 1, 2007
Anyone out there having "self blocking" issues since upgrading to SP4 on SQL 2000? Enabing trace flag 9059 has not helped, is this a parallelism issue ?
thanks,
Paul
View 7 Replies
View Related
Jan 6, 2004
Any ideas?
I execute a sproc from QA.
It interogates a folder:
Select @Command_String = 'Dir ' + @FilePath + '*.txt'
Insert Into XLAT_Folder exec master..xp_cmdshell @Command_String
[/code[
Which I then Parse and get the details...
Set up a CURSOR (Booo hiss....)
[code]
DECLARE XLAT_Folder CURSOR FOR
SELECT Create_Time
, File_Size
, [File_Name]
FROM XLAT_Folder_Parsed
ORDER BY [File_Name]
WHILE FETCH STATUS = 0
BEGIN
BEGIN TRAN
Then, based on the methodology that the file name must match the table and format file (I check to make sure everything is out there)
I then bcp the data in using my connection pooling id (I'm logged on as sa in qa)
SET @cmd = 'bcp ' + @db_name + '..' + SUBSTRING(@File_Name,1,CHARINDEX('.',@File_Name)-1) + ' in '
+ @FilePathAndName
+ ' -f' + 'd:DataTax' + SUBSTRING(@File_Name,1,CHARINDEX('.',@File_Name)-1) + '.fmt'
+ ' -S' + @@servername + ' -U -P'
SET @Command_string = 'EXEC master..xp_cmdshell ''' + @cmd + '''' + ', NO_OUTPUT'
INSERT INTO #XLAT_BCP_Results(Col1) Exec(@Command_String)
MOVE DATA FILE TO ARCHIVE
COMMIT TRAN
ANOTHER FETCH
A spid is launched to do the bcp...I have 4 files...on the last load The connection Pooling lauched spid gets blocked by the sa spid that launched the sproc...it doesn't happen all the time, just most of the time....
I've put a trace on in Profiler, but I don't see anything...I've picked the event class of deadlocks...but I never see it...
When I do sp_who, it shows the blocking...
I'm so confused....
View 8 Replies
View Related
Aug 31, 2006
Hi just read an article on the internet that states
"A quick way to resolve a blocking problem is to disconnect the connection blocking the rest of the users. All you have to do is ask your database administrator to execute the KILL statement. Obviously, this is not a permanent solution, and won't really help anything except take care of an immediate need."
Now when i run sp_who ... i see that the spid that is blocking is the same as the spid itself....
Now the above article states that killing the one that is blocking the rest of the other spids is ok ...
But what if its the same SPID that is blocking ...what does it signify & whats the solution
Thanks
View 2 Replies
View Related
Nov 13, 2007
Hi Gurus,
I am running a simple SELECT statement on my TempDB
SELECT * FROM TempDB..SysObjects
When I run this , it's getting blocked by some other Process which is not at all relevant to the above Qry. First it gets blocked by one Stored Proc say Proc1 ( The Proc1 is just a SELECT statement on a table which just has four rows ). So I just kill this PROC1 and again its gets blocked by some other stored Proc PROC2 which again is a simple stored Proc and it runs in not time.
Any Suggestions as to where to start.
Thx in Advance
Venu
View 13 Replies
View Related
Jul 23, 2005
hi,I am using SQL SERVER 2000.Problem that i am facing is when ever I check locks in EnterpriseManager I findfollowing blocking - :1) sp_cursoropen;12) sp_cursorclose;13) sp_cursorfetch;1We dont have any control over application(source code).Whateverwe have to do, has to done from database side.can anyone guide me to solve this problem.Thanks
View 4 Replies
View Related
Sep 21, 2007
i want to check the price of sql server 2005 in my country as a consideration to take when deciding on wich db to build.i dont understand the licensing method. what 5 clt stands for ? whats the basic 64 bit 1 processor dual core license i need for a commercial website ? thanx,
View 1 Replies
View Related
Jan 24, 2005
Hello,
Anyone aware of any license requirment for selling any application developed in ASP.NET (C#) using MSDE as backend?
Any response will be highly appreciated.
Thanks
View 5 Replies
View Related
May 29, 2001
If I just need a desktop version of SQL 7.0 installed for local development. (Not being used as a server) Do I just need a CAL license?
Thanks!
View 3 Replies
View Related
Jul 12, 2000
Hi ,
I have two servers, One is with per seat mode
another with per license mode.
when i am registering one server which is having per seat mode at one of
my client machine , it is giving u dont have license permission.
Can anyone suggest me regarding license modes if u have two servers.
thanku
rk
View 2 Replies
View Related
Dec 13, 2000
Hi all,
I want to know how I can do to change my SQL server licence mode (from per-ser to per-seat) without reinstall SQL Server.
Thanks in advance.
View 3 Replies
View Related
Jan 17, 2001
Hi all,
There is a guy in my company install a sql server himself, but he picked the per seat license rather then the per server (we got the per server license), is there a way to change it without re-install the whole sql server? or need to reinstall from start?
Thanks,
Westley
View 1 Replies
View Related
Mar 8, 2001
I can't find anything written about licensing for OLAP anywhere. Do I presume correctly that it doesn't require one of its own?
Thanks for any info.
Simon
View 3 Replies
View Related
Jun 5, 2002
Is there a way to change the license key after installation of SQL7.0?
View 1 Replies
View Related
Mar 18, 2004
Is there a way to check if a sql 2000 server was installed on the license of "per server" or "per # concurrent users"?
Can't find from server property.
thanks
-D
View 1 Replies
View Related
Nov 8, 2004
Does it mean "per hard drive" or "per CPU"(Pentium III, Pentium IV, etc.)? I'm a bit confused about it after reading a lot of books and article talking about processor license. Thanks in advance....
View 4 Replies
View Related
Jun 22, 2006
Hi,
I have to audit a number of servers and tally with source installation CDs. How can I tell which CD license key has been used on a server , i.e. where (I assume in registry) is the license key held ??
Many thanks.
View 1 Replies
View Related
Oct 20, 2006
Hey Gang,
I was wondering if there was an alternative to using SQL SERVER and not having to spend all that money on a license?
View 5 Replies
View Related
Jan 17, 2007
I run w2003 standard and SQL 2K on my development machines.
I have installed this environment several times with no problems.
Now I am setting up a new machine, an AMD dual core.
Right after installing and validating w2003 I tried to install SQL 2K developer edition and after the first few dialogs it brings up a license key dialog with an already filled in key and it will not let me continue.
This product doesn't require a key, and no keys are given for it in my MSDN subscription. I just tried this CD in an XP machine and it installs without asking for a key. It never asked for a key when I installed on previous w2003 std. machines either.
Why I sit asking for a key now? Why will it not install on this particular machine?
Thanks.
View 2 Replies
View Related
Aug 28, 2006
Hello,
I have a question concerning the license requirements for SQL Server Express Edition. I read from a previous MSDN license agreement for MSDE the following non-competition section:
"7.6 If you choose to redistribute MSDE, you also agree: (i) that your application shall not substantially duplicate the capabilities of Microsoft Access or, in the reasonable opinion of Microsoft, complete with same; and (ii) that unless your application requires your customers to license Microsoft Access in order to operate, you shall not reproduce or use MSDE for commercial distribution in conjunction with a general purpose word processing, spreadsheet or database management software product, or an integrated work or product suite whose components include a general purpose word processing, spreadsheet, or database management software product except for the exclusive use of importing data to the various formats supported by Microsoft Access."
I can't find this section or similar verbiage in the SQL Server Express Edition redistribution EULA or in the newest MSDN license agreement. My company has a database product that provides other functionalities besides just being a database. However we didn't use MSDE due to the section quoted above. I am wondering whether SQL Server Express Edition's license model has changed?
Any help is greatly appreciated.
Thanks,
-Jason-
View 1 Replies
View Related
Oct 3, 2007
Hi, I'm not sure if this is the correct forum to ask about this, but here it goes.
I was planning to aquire the SQL Workgroup (2 processors, bla bla bla). But I realized it is not as simple as that.
Then I was looking at the different licenses and I'm not sure where I stand. The 2 processors, reporting services and
unlimited Database size is what I need. I currently use the Express Edition so I cant schedule backups within the
SQL Server and also when the database reaches 4GB will have to buy another version of SQL Server.
But which license should I have? I am a developer so all I need is an instance of the SQL Server running, nothing else.
My application will connect to it and do its job from different PCs in the netowork. I dont need any SQL Client application
running and my application uses a single user (sa) to access the SQL Server simultaniously from several PCs on the
network.
So that is why I think this is a maze to me, I don't know where to proceed. Does anyone know which license or whatever
SQL Server 2005 Workgroup version should I use?
Thanks,
Fábio
View 17 Replies
View Related
Dec 19, 2007
I installed sql server 2005 standard edition a few months ago and while installing i realized that it was the 5 CAL version. I need the per processor license. so we order the per processor license standard edition. i go to install it and it tells me to run setup with the SKUUPGRADE option. i try that and it doesn't work. so then, i go to control panel and hit change/remove and it installs some stuff. i install some hotfixes to get it up to build 9.0.3159 like the rest of my servers. however, i can't find any way to tell what kind of license it's using. this is one of my production servers so i can't have any restrictions or reduced performance if it still thinks it's running a 5 CAL version. how do i tell what kind of license it's using?
i was originally going to uninstall sql server 2005 and reinstall it using the new media, but this server is also one of my production sql server 2000 servers and if it messed up my sql server 2000 installation i would be in huge trouble.
View 2 Replies
View Related