Viewing 15 posts - 181 through 195 (of 518 total)
No - 2008 and 2008 R2 are essentially different versions entirely with a similar name.
Patches are for one or the other. There are no SPs for R2 yet.
October 7, 2010 at 10:14 am
You need explicit conversions on INT/Numeric/etc columns when concatenating to a varchar/nvarchar string, such as:
SELECT @lvc_log_string =
CONVERT(NVARCHAR, @pi_quarter_num) + ' ' +
CONVERT(NVARCHAR, @pvr_financial_year) + ' ' +...
October 7, 2010 at 10:12 am
I have never successfully edited a column type through the GUI..
Just do it via T-SQL
ALTER TABLE tablename
ALTER COLUMN columname VARCHAR(MAX)
October 6, 2010 at 3:04 pm
exec sp_configure 'Show Advanced Options',1
reconfigure with override
exec sp_configure 'Max Degree of Parallelism',1
reconfigure with override
See if that helps at all. Downgrading from 4 cpus to 2 cpus is going to have...
October 6, 2010 at 2:19 pm
Differential backups have nothing to do with log backups.
October 6, 2010 at 2:03 pm
The method you're trying to implement is a million miles away from Best Practice actually. The root issue here is that the database is on Full recovery when there is...
October 6, 2010 at 1:52 pm
Why are you using full if you don't plan on taking transaction log backups?
I realize you said it's a requirement, but why? That sounds like it was a rule written...
October 6, 2010 at 1:24 pm
With only 2 procs, make sure your MAXDOP is set to 1. If SQL tries to run any kind of parallelism, it could take up both CPUs and then that...
October 6, 2010 at 1:18 pm
Tara-1044200 (10/6/2010)
Ohh ok I got it.I have to remove built in group in SQL Server to restrict users in the administrator group to prohibit from sql server, right?
Correct
Actually in Sql...
October 6, 2010 at 1:16 pm
pavan_srirangam (10/6/2010)
Try this use group by instead of distinct.Distinct utilizes more resources.
What is your reasoning for this?
You get the same execution plan either way (index scan + hash match)
October 6, 2010 at 1:09 pm
Tara-1044200 (10/6/2010)
October 6, 2010 at 1:01 pm
By default, in sql 2005, the builtin\administrators group (local windows admins) have sysadmin access to the sql server.
If you want to remove that and add users manually, remove the builtin\administrators...
October 6, 2010 at 12:51 pm
You could install it on your sql server instead of your desktop, and then remove it when done.
October 6, 2010 at 12:33 pm
Thanks - its also usable and easily understandable by the business people (color coded), developers, and anyone else who might need that info, but doesn't want to have a full...
October 6, 2010 at 12:24 pm
I've used Spotlight, and later Idera..but now basically I just have my own reporting page that gives me at-a-glance info on every server (failed job list, long running jobs, replication...
October 6, 2010 at 12:15 pm
Viewing 15 posts - 181 through 195 (of 518 total)