Viewing 15 posts - 301 through 315 (of 348 total)
Good point, David. I remember another thread from a few days ago where someone said something to the same effect.
May 19, 2005 at 1:21 pm
Reporting Services is just a web application (that runs on IIS) with two SQL Server databases to store its internal information and to use as temp space when compiling reports....
May 19, 2005 at 11:01 am
You can install another instance of Standard Edition on the same physical server (not in a cluster - that requires Enterprise Edition). With Standard Edition you have to pay for...
May 19, 2005 at 10:43 am
The only thing I know of that you can do is SET DEADLOCK_PRIORITY. This only controls which spids would get killed if a deadlock occurs (you're basically designating this SP...
May 19, 2005 at 10:13 am
One script to accomplish this is in the scripts section under something like orphan users. Here's a copy:
declare @usrname varchar(100), @command varchar(100)
declare Crs insensitive cursor for
select name as UserName from...
May 19, 2005 at 9:16 am
regarding the thread comment, SQL Server will spawn a seperate thread for each file (say you have a filegroup of three files, SQL Server will spawn three threads to read from...
May 19, 2005 at 7:39 am
As far as I know, there is only one version of reporting services. You do not have to purchase a seperate license for Reporting Services unless you want to install...
May 19, 2005 at 6:41 am
For more information, check out the MCP FAQ: http://www.microsoft.com/learning/highlights/announcefaq.asp.
(excerpt)
Historically, the MCP program has required certified individuals to meet certification upgrade requirements to remain certified. This program requirement...
May 18, 2005 at 2:40 pm
using dbo in this context identifies the table owner. I.E. if you had two tables with the name table1 in your database, one owned by dbo and one owned by...
May 18, 2005 at 1:07 pm
I haven't had any problems moving files of this size over a network (it just takes a lot of time), but that really depends on the quality of your LAN/WAN,...
May 18, 2005 at 10:14 am
Varchar doesn't pad the entries with extra data like spaces. Char datatypes do. You shouldn't have a problem with 'unused' space with varchar columns.
Search for "Using char and varchar...
May 18, 2005 at 10:11 am
Better example, using your servername:
Default Instance - MySQLServer
Named Instance - MySQLServer\instance1 (files will be under the C:\Program files\...\MySQLServer$instance1 directory)
May 18, 2005 at 8:52 am
Viewing 15 posts - 301 through 315 (of 348 total)