Viewing 15 posts - 3,076 through 3,090 (of 7,168 total)
Amount of memory being used for the buffer pool:
SELECT CAST((bpool_committed * 8) / (1024.0 * 1024.0) AS DECIMAL(20, 2)) AS BufferPoolCommittedMemoryGB
FROM sys.dm_os_sys_info;
September 24, 2012 at 11:59 am
It looks like you're running into an issue with a stored password. Are you saving the sa password in the Connection Manager in the SSIS package? If so then what...
September 24, 2012 at 11:46 am
Perry Whittle (9/24/2012)
braju (9/24/2012)
September 24, 2012 at 11:28 am
Look for ACEOLEDB.DLL on your machine. It should be in an Office14 folder in one location or another depending on whether you have Office installed or whether you installed the...
September 24, 2012 at 11:25 am
Sorry I misunderstood the scenario. Try changing the input file encoding from UTF-16LE (what Microsoft calls "Unicode") to UTF-32 and see if passing that file works. It's a workaround but...
September 24, 2012 at 8:38 am
I have worked with Idera sqlDM, nagios & SCOM. It might be the most basic of monitoring tool functions, i.e. monitoring if a service is alive, so pretty much any...
September 24, 2012 at 8:27 am
I would recommend setting up monitoring from atmleast one other machine. You could use WMI to check the service status periodically and email if there is a problem. There are...
September 24, 2012 at 7:52 am
The short answer is yes, the settings in the configuration file will be used instead of the info hardcoded into the Connection Manager object.
There is an order of precedence on...
September 23, 2012 at 1:17 pm
GilaMonster (9/23/2012)
opc.three (9/23/2012)
September 23, 2012 at 12:33 pm
I could see that for restoring a snapshot in a production rollback scenario.
To be fair and complete you have to be out of the DB to restore WITH REPLACE...
September 23, 2012 at 11:56 am
Sapen (9/21/2012)
Currently I am updating statistics on specific tables (identified them based on modified rows) daily at 2:00AM.
Just curious, are you applying your own algortihm using sys.sysindexes.rowmodctr?
September 23, 2012 at 11:35 am
The tables sound like good candidates for havaing their non-clustered PK converted to a clustered PK.
I'd like to expound on a couple points in your post.
If the PK is turned...
September 23, 2012 at 11:20 am
Dave Ballantyne (9/23/2012)
Had to re-sort to pausing the...
September 23, 2012 at 10:17 am
You cannot replicate a regular view because in a regular view the data is not materialized. You can however replicate an indexed view for that same reason.
It sounds like one...
September 23, 2012 at 10:01 am
This technique works for me. It guarantees success when there are apps are running with sysadmin-level permissions:
USE YourDatabase;
ALTER DATABASE YourDatabase SET SINGLE_USER WITH ROLLBACK IMMEDIATE; -- forcefully kills all user...
September 23, 2012 at 9:51 am
Viewing 15 posts - 3,076 through 3,090 (of 7,168 total)