Viewing 15 posts - 5,536 through 5,550 (of 7,168 total)
walia_jagwinder (7/13/2011)
is the 32767 users can login to sql server?
What does this return on your server?
SELECT @@MAX_CONNECTIONS ;
You can also use this:
EXEC sys.sp_configure
@configname = 'user...
July 13, 2011 at 10:54 am
MysteryJimbo (7/13/2011)
It is actually 32767 concurrent and running connections as its based on an smallint value but is generally...
July 13, 2011 at 10:53 am
I would like to try a few things out on this side. Just so we're on the same page which version of SQL Server and SSIS are we on?
July 13, 2011 at 9:50 am
Are you sure it is a process within SQL Server using high amounts of CPU? What else is running on the server?
If you're sure you're supposed to be looking at...
July 13, 2011 at 9:34 am
From http://technet.microsoft.com/en-us/library/ms179874(SQL.100).aspx
@@MAX_CONNECTIONS returns the maximum number of simultaneous user connections allowed on an instance of SQL Server. The number returned is not necessarily the number currently configured.
The actual number of...
July 13, 2011 at 9:24 am
XML operations can use more than a trivial amount of additional CPU over an equivalent operation done in standard T-SQL or even CLR. It will depend on many factors so...
July 13, 2011 at 9:17 am
32-bit Windows right?
This happens when your server runs out of MemToLeave memory area. It's related to limitations with the Virtual Address Space in 32-bit windows and the only cure is...
July 13, 2011 at 9:04 am
I have some experience with jTDS (1.2.x) and I was left unimpressed by their Unicode support when connecting to SQL 2008 R2. Have you tried the Microsoft JDBC Driver 4.0...
July 13, 2011 at 8:59 am
Note: Asynchronous database mirroring (a.k.a. High-Performance Mode) is supported only by SQL Server 2005 Enterprise Edition Service Pack 1 (SP1) and later versions.
July 13, 2011 at 8:29 am
I agree with Koen on all points. The File Watcher Task is far easier but it will require an extra file to be deployed to all your servers before your...
July 13, 2011 at 7:04 am
ghanshyam.kundu (7/13/2011)
here is a small document which i found very useful for naming convention.http://www.cms.gov/DBAdmin/downloads/SQLServerStandardsandGuildelines.pdf
This are nice standards, but where do they talk about standards for naming the database itself, or...
July 13, 2011 at 6:53 am
shubham.saxena67 (7/8/2011)
I have created a database with name caspa_in_caspa that is associaded with a user caspa_in_caspabareilly and
when we are creating table in database caspa_in_caspa though query it is created...
July 12, 2011 at 5:07 pm
+1 on the calendar table
Here is a function that can help you generate one from scratch with lots of useful columns:
July 12, 2011 at 4:42 pm
PhilipC (7/11/2011)
July 12, 2011 at 4:27 pm
Viewing 15 posts - 5,536 through 5,550 (of 7,168 total)