Viewing 15 posts - 406 through 420 (of 541 total)
t.walker (2/23/2009)
http://technet.microsoft.com/en-us/sysinternals/bb897428.aspx
There is also a tool called DiskView.exe which visualises the fragmentation.
I just did a smallish test defragmenting a 5GB MDF in a dozen pieces on a highly fragmented...
February 23, 2009 at 8:42 am
Check your settings again.
On whichever server you have LSALERT__ job that's the monitor server.
December 18, 2008 at 10:57 am
Are you log shipping all db's from 0 server to 1 server or are you also log shipping from 1 to 0?
Can you list the LS jobs from server 0...
December 17, 2008 at 12:47 pm
If this is a critical production system.
You can use sqlmobile from Idera.
December 17, 2008 at 12:35 pm
for DDL.
from SSMS right click on db and select schema history changes report.
December 17, 2008 at 12:24 pm
Certificates are used to encrypt your data just like in IE.
Here is the tutorial on certificates:
http://www.exforsys.com/tutorials/sql-server-2005/sql-server-managing-certificates.html
December 6, 2008 at 3:38 pm
You have to create a certificate in the master db first.
I used a self signed cert example:
USE MASTER;
CREATE CERTIFICATE testlogincert
ENCRYPTION BY PASSWORD = 'pounlmdsf'
WITH SUBJECT = 'your login',
EXPIRY_DATE = '12/31/2012';
GO
And...
December 2, 2008 at 1:25 pm
Do you get any values when you run
exec Report.CustomerBasicReport 998,'-1', null, null, 'H'
November 25, 2008 at 8:29 am
jishar (11/20/2008)
Hi all,I need to find out the size of selected rows in a table of Sql server 2005.
ANyone is having the solution , please help
Thanks in Advance
Jishar
You can...
November 21, 2008 at 11:47 am
Was this database backed up/restored from another server?
November 21, 2008 at 11:26 am
In the 2005 Server run this:
create table AgentStatus (
job_id uniqueidentifier NOT NULL,
last_run_date int NOT...
November 21, 2008 at 11:21 am
r.pe (11/18/2008)
November 18, 2008 at 2:31 pm
That's a .NET Framework error.
Do a clean uninstall and run windows updates to download the latest updates and try reinstalling again.
November 7, 2008 at 2:12 pm
Sandy (10/29/2008)
October 29, 2008 at 11:02 am
Viewing 15 posts - 406 through 420 (of 541 total)