Viewing 15 posts - 1,816 through 1,830 (of 1,837 total)
To answer your original question, yes Standard Edition does include SSIS, SSRS, SSNS. Check out this link for a more comprehensive comparison:
http://www.microsoft.com/sql/prodinfo/features/compare-features.mspx
You can use the Developer Edition...
August 22, 2008 at 8:22 am
have the developers check SQL Server Configuration Manager on their machines, and see if they have an Alias setup under the SQL Native Client Configuration section. With an Alias,...
August 22, 2008 at 7:39 am
Do you know what your data cache hit ratio is? If it's in the mid to upper 90s, I wouldn't worry about SQL Server only using 300 Meg. ...
August 21, 2008 at 11:08 am
if you're limmited to using only 6 disks, I'd personally organize them in 3 pairs of RAID 1. We have a couple smaller production servers setup this way:
C:\ ...
August 21, 2008 at 10:40 am
OK, sorry for the confusion with VARCHAR(MAX). Since this question was in the SQL Server 2005 forum, I went with that. In 2000 you can have VARCHAR be...
August 20, 2008 at 4:00 pm
One way to handle this type of situation is in a stored procedure, have a parameter for each column that could have a filter on it, with a default value...
August 20, 2008 at 3:49 pm
I noticed in your COL_NAME function call that you specified 50. does the table actually have 50 columns in it?
Try this:
[font="Courier New"]SELECT *
FROM sys.columns
WHERE object_id...
August 20, 2008 at 3:24 pm
Actually, you should be trying to avoid using the OS paging file on a database server. Database engines use a number of algorithms to determine if and when they...
August 20, 2008 at 3:09 pm
CTE will be your best option. A sample CTE for starting at a specific ID type situation is below:
[font="Courier New"];WITH OrgHierarchy (OrgID, OrgName) AS (
SELECT...
August 19, 2008 at 11:46 am
Is there a reason that you need the datatype TEXT for this column? I believe that Microsoft is depreciating that in favor of the newwer VARCHAR(MAX) datatype. TEXT...
August 19, 2008 at 11:02 am
Whenever you restore a database to a different instance than it was originally backed up from, you will need to reassociate the logins to the database users. I use...
August 19, 2008 at 10:50 am
The difference may be in licenses. If the difference is really large, then the OEM version may just be the disc, and you'd have to purchase a license and/or...
August 19, 2008 at 10:23 am
I really believe that creating separate tables for individual products will cause you more headaches than it will solve. The options you could take are:
1.) The most flexible...
August 19, 2008 at 10:08 am
The first thing to consider is if the INSERT is just inserting one row by INSERT INTO... VALUES... or is it doing a query INSERT INTO... SELECT...
Also, does the table...
August 19, 2008 at 9:40 am
No offense Jeff, but I think you're taking the discussion a bit off topic. The original question had nothing to do with cursors as you know them in SQL...
August 19, 2008 at 7:16 am
Viewing 15 posts - 1,816 through 1,830 (of 1,837 total)