January 21, 2007 at 6:33 pm
Hi All,
How do i find number of user connection?
AusNetIT Solutions
Web Design | Web Hosting | SEO | IT Support
January 21, 2007 at 8:54 pm
You can run the following in the master db
select count(*) from master.dbo.sysprocesses
or can use sp_who or sp_who2 for more detail other than a count.
Hope this helps
February 11, 2007 at 4:17 pm
HI,
This says 248? So what is this number or is this make any difference to the SQL Server if so how do i find the bottleneck?
AusNetIT Solutions
Web Design | Web Hosting | SEO | IT Support
February 12, 2007 at 1:32 am
finding bottleneck:
Look at the performance counter (cpu, I/O)?
sp_who2 gives some information about connections, if they are blocked and the amount op cpu,io since the connection started
sql profiler can start a trace to find the longest running/expensive queries.
February 12, 2007 at 7:43 am
because spids that are below 50 are system processes, i usually use this for the rough guestimate:
select count(*) from master.dbo.sysprocesses where spid >=50
Lowell
February 12, 2007 at 5:33 pm
Hi
Thanks, Now says 267. Is there any limits on SQL 2000 STd?
How do i find how many user cals required for this server?
AusNetIT Solutions
Web Design | Web Hosting | SEO | IT Support
February 12, 2007 at 5:48 pm
i know for SQL 2000, there's an applet in the control panel: Start>>Control Panel>> SQL Server Licensing Setup;
mine says Processor License for 2 Processors, and doesn't have the ability to switch to the grayed out Per Seat mode...I believe that gets setup on installation/reinstallation, and maybe if you reinstall service packs.
I've heard that there's no limit to the number that can connect on a LAN when it's per processor, and that you need a separate license for internet connections, but i'm not a licensing guru;
I've read that you should plan for as much as 50 meg per connection to have the server run efficiently (rule of thumb..not the law), so for example, 2 gig of ram would be sufficient for 40? or is it 400 user connections...
HTH
Lowell
February 12, 2007 at 6:34 pm
HI,
Yes, I got that and set to per seat 100 and per processor grayout.
But now i want to know is there anyway i can see that we got 100 CAL's? I' just started for this company and trying to document.
If we didn't get 100 cal's is there any issues with above 267 connections?
Like to know that 50mb for 40 users or connections?
AusNetIT Solutions
Web Design | Web Hosting | SEO | IT Support
February 13, 2007 at 9:16 am
SQL Server licensing has nothing to do with the number of connections.
It's either per-processor or server + CAL.
Per-processor = unlimited users, devices, and connections.
Server + CAL = Each server must be licensed; server access is licensed by user and machine CALs (Client Access License).
User CAL: A named user may connect to any number of server-licensed servers on the same physical network. The number of simultaneous connections and the number of devices that user may use at any given time are unlimited.
Device CAL: A single device (workstation, laptop, smartphone, etc) may be used by any number of users to connect to any number of per-server licensed servers on the same physical network. The number of simultaneous connections is unlimited. Note that a device CAL does not cover users connecting to the device as middle-tier application server that is connecting to SQL Servers. (See 'multiplexing' in the licensing info)
http://www.microsoft.com/sql/howtobuy/default.mspx
http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=5&messageid=258082#bm286332
To determine if you have 100 CALs, you will need to find the documentation your company received when it purchased the CALs. The 'licensing utility' was just a little tool that let anyone type in a number to help them remember what they actually purchased. If you are using an open/volume licensing plan through MS, then your CAL count should be available on the open or volume licensing web pages. If you are purchasing licensing through vendors, then you should have received paper Server, CAL, and/or processor license documents.
-Eddie
Eddie Wuerch
MCM: SQL
February 22, 2007 at 5:26 pm
Hi Eddie,
Thank you so much for your information and your time.I got few questiont to ask and please help.
1. MS SQL STD Server Open License with Software Assurence @ 1850
Is this mean every year need to pay @1850?
2. MS SQL User CAL with Software Assurance @330?
again, is this per year?
3. I got 1 Server with Per user cals but i'm going to buy 2nd server with per processor (@11,856) , because its cheap compare to per user + server. By doing this am i into any issues with user connection?
AusNetIT Solutions
Web Design | Web Hosting | SEO | IT Support
March 5, 2024 at 10:44 am
This reply has been reported for inappropriate content.
What specific strategies does SEO Services North London employ to ensure businesses in the region achieve prominent search engine rankings, maximize online visibility, and effectively drive targeted traffic to their websites?
Viewing 11 posts - 1 through 10 (of 10 total)
You must be logged in to reply to this topic. Login to reply