Viewing 15 posts - 1 through 15 (of 30 total)
If you are feeling adventurous and want to turn on CLR within your SQL instance, the procedure at the sqlteam weblogs is very nice and will give you information about...
August 29, 2008 at 2:33 pm
Hey Ism,
There is no "performance" penalty for using mount points and you should definitely still use three separate LUN's for each mount point. There is however a flexibility issue...
July 2, 2008 at 2:44 pm
Very interesting indeed. It does appear however that SQL Server 2005 will implicitly "convert" your varchar to an int without you specifically casting it (I'm not sure if...
March 7, 2008 at 3:20 pm
This blog post from the PSS (Product Support Services) team does a great job (in my opinion) at "un-muddying" (is that a word?) the SP2/GDR water.
April 12, 2007 at 5:45 pm
No problem.
Thanks for the log post. I am not sure if this will help or not, but there maybe another process that is logging onto your SQL Server prior...
July 17, 2006 at 3:51 pm
Sounds like the service pack installer is having problems connecting to the instance via shared memory. The service pack attempts to connect via shared memory and places the sql...
July 17, 2006 at 8:31 am
Just my .02 ....
If you do have an active/active cluster, then it might be a good idea (as Steve suggested) to set your max memory configuration to 5 GB for...
November 17, 2005 at 5:35 pm
Agreed.
Try explicitly re-adding the system account back to SQL Server. Something like:
use master
EXEC sp_grantlogin [NT Authority\System]
EXEC sp_addsrvrolemember [NT Authority\System] , 'sysadmin'
go
should work.
September 15, 2005 at 10:57 am
I agree with the previous post. Make sure that your proxy account has the Bypass Traverse Checking right. Also, we have had to make sure that our proxy...
August 4, 2005 at 10:31 am
If you are a glutton for punishment, you could implement IPSec between your SQL Servers (not just the AH - Authentication Header stuff ...).
Or set up something like a secure...
July 18, 2005 at 3:17 pm
Since you are using the "out-of-the-box" LogShipping facility, check out this whitepaper:
http://support.microsoft.com/default.aspx?scid=kb;en-us;323135&sd=tech
But to answer your question, it is not really difficult to restore the "primary to standby" log...
July 15, 2005 at 8:48 am
If Terminal services/RDP is not feasible, another possible VPN like approach would be to get an SSH server installed on the "shared" SQL Server (like Vshell, or Cygwin with SSH,...
March 4, 2005 at 8:52 am
Very interesting .. we had a similar problem when our servers were migrated to AD ... and reconfiguring the SQL Server Agent worked for our situation. Check out this...
September 19, 2004 at 12:02 pm
Either add an Active Directory Domain account to be the SQL Server Agent service account, or change your DTS scheduled jobs to run as a SQL Login account (i.e. sa...
September 17, 2004 at 4:49 pm
Viewing 15 posts - 1 through 15 (of 30 total)