Viewing 15 posts - 661 through 675 (of 966 total)
What about using DBCC FREEPROCCACHE and DBCC DROPCLEANBUFFERS?
October 14, 2010 at 1:52 pm
What shows up when you open up SQL Server Configuration Manager and check the services section?
October 13, 2010 at 4:35 pm
This sounds similar to what MS wants to do with data-tier applications in SQL 2008 R2.
October 13, 2010 at 4:28 pm
dir $path -Recurse | ft FullName | ForEach-Object {(Get-Acl $_).Owner}
I think this may not be working because foreach-object needs to reference an array object to work like foreach-object {<$object> in...
October 13, 2010 at 4:21 pm
With Windows Server 2003 using /PAE and AWE you can address up to 64GB of RAM. I would say at least 2-3GB would be needed for the OS leaving whatever...
October 13, 2010 at 4:09 pm
We cannot change any settings on prod without an rfc even if it doesnt need a downtime
If this is the case then you should stress to your management that the...
October 13, 2010 at 4:01 pm
I agree with Dan. We still have some operational 2000 instances that we have not been able to migrate to 2008 yet, and with our SAN vendor we can increase...
October 13, 2010 at 3:56 pm
Have you applied SQL 2000 SP4 on your workstation? If not I would try that and then try connecting again.
Alternatively, since you have a SQL 2005 instance also deployed, why...
October 13, 2010 at 3:51 pm
Run dbcc (<db name>) updateusage to update the page count and then rerun dbcc checkdb (<db name>) with no_infomsgs, all_errormsgs to ensure that there are no more errors in the...
October 12, 2010 at 3:52 pm
Something I just forgot. Make sure that the powershell environment is setup to run scripts. By default scripts are disabled in powershell. You need to make sure that the execution...
October 12, 2010 at 2:38 am
What do you get when you run the following:
dbcc checkdb (dbname) with no_infomsgs, all_errormsgs
October 11, 2010 at 3:53 pm
If powershell is installed on the server, just create a cmdexec step and in the command box just type the following:
"c:\windows\system32\windows powershell\v1.0\powershell.exe" -file <file>
Where <file> is the location/name of your...
October 11, 2010 at 3:48 pm
Just for clarification, are the e-mails actually getting sent out to the intended recipients? It almost sounds like the SMTP server the job is using is rejecting to send the...
October 11, 2010 at 3:37 pm
I do not think comparing fullname to surname like that would be wise, because even if the data was correct it would come up as true. For example 'John Smith'...
October 7, 2010 at 5:28 pm
Well, since you are loading your dev environment with your production environment if replication breaks down and you cannot get it back up you can reinitialize replication.
You could do...
September 26, 2010 at 6:34 am
Viewing 15 posts - 661 through 675 (of 966 total)