Viewing 15 posts - 3,781 through 3,795 (of 6,676 total)
Changed how? Are the permissions disappearing - or are they different from what you originally set?
Jeffrey Williams
“We are all faced with a series of great opportunities brilliantly disguised as impossible situations.”
― Charles R. Swindoll
How to post questions to get better answers faster
Managing Transaction Logs
May 26, 2010 at 11:30 am
This article might help: http://support.microsoft.com/kb/19388
Also, you could try modifying the Recovery values for the service. Set the Restart Service for the First Failure and set the value to 2...
Jeffrey Williams
“We are all faced with a series of great opportunities brilliantly disguised as impossible situations.”
― Charles R. Swindoll
How to post questions to get better answers faster
Managing Transaction Logs
May 26, 2010 at 11:25 am
If you have enterprise edition, you could setup database mirroring and create a database snapshot from the mirrored database.
Or, you could setup replication and only replicate the tables you need...
Jeffrey Williams
“We are all faced with a series of great opportunities brilliantly disguised as impossible situations.”
― Charles R. Swindoll
How to post questions to get better answers faster
Managing Transaction Logs
May 26, 2010 at 9:53 am
Verify the version of the client tools - if they are not at SP2 or greater, the reports won't show up. Also, make sure you are connecting to an...
Jeffrey Williams
“We are all faced with a series of great opportunities brilliantly disguised as impossible situations.”
― Charles R. Swindoll
How to post questions to get better answers faster
Managing Transaction Logs
May 25, 2010 at 7:45 pm
lmu92 (5/25/2010)
wouldn't it be nice to have a SQL Server setting (like IDENTITY_INSERT), something like STRING_TRUNC with ON as a default (truncate strings, like it currently does...)? That would allow...
Jeffrey Williams
“We are all faced with a series of great opportunities brilliantly disguised as impossible situations.”
― Charles R. Swindoll
How to post questions to get better answers faster
Managing Transaction Logs
May 25, 2010 at 5:15 pm
This is actually a rather simple issue to fix - but not intuitive. For the failure notify operator task, you probably have solid red lines connecting from each of...
Jeffrey Williams
“We are all faced with a series of great opportunities brilliantly disguised as impossible situations.”
― Charles R. Swindoll
How to post questions to get better answers faster
Managing Transaction Logs
May 25, 2010 at 5:04 pm
As far as I know, this cannot be overwritten. The numbering is not just for the database engine, it also is defined for SSRS/SSAS and other components.
The value is...
Jeffrey Williams
“We are all faced with a series of great opportunities brilliantly disguised as impossible situations.”
― Charles R. Swindoll
How to post questions to get better answers faster
Managing Transaction Logs
May 25, 2010 at 3:22 pm
You have to remove them from the db_datareader role which grants read access to all objects (tables and views). Then, you have to explicitly grant read access to each...
Jeffrey Williams
“We are all faced with a series of great opportunities brilliantly disguised as impossible situations.”
― Charles R. Swindoll
How to post questions to get better answers faster
Managing Transaction Logs
May 25, 2010 at 1:48 pm
You can run the following to identify when the statistics were last updated:
SELECT *, stats_date(object_id, stats_id) FROM sys.stats;
To find out the sampling rate for the statistics, you can run the...
Jeffrey Williams
“We are all faced with a series of great opportunities brilliantly disguised as impossible situations.”
― Charles R. Swindoll
How to post questions to get better answers faster
Managing Transaction Logs
May 24, 2010 at 7:44 pm
Yes, you are looking for trouble - especially if this is a production system. You really need to add storage to the system or figure out what can be...
Jeffrey Williams
“We are all faced with a series of great opportunities brilliantly disguised as impossible situations.”
― Charles R. Swindoll
How to post questions to get better answers faster
Managing Transaction Logs
May 24, 2010 at 2:45 pm
Once you have SSRS installed, you can report from any ODBC/OLEDB source system. For example, I have reports where the source data is on Intersystems Cache and I have...
Jeffrey Williams
“We are all faced with a series of great opportunities brilliantly disguised as impossible situations.”
― Charles R. Swindoll
How to post questions to get better answers faster
Managing Transaction Logs
May 23, 2010 at 9:47 am
Okay - so, have you verified that the lock pages in memory policy has been set for the service account running SQL Server? If that is not set, AWE...
Jeffrey Williams
“We are all faced with a series of great opportunities brilliantly disguised as impossible situations.”
― Charles R. Swindoll
How to post questions to get better answers faster
Managing Transaction Logs
May 21, 2010 at 10:43 pm
Sorry, but this isn't clear - are you running x64 or x86 versions of the OS and SQL Server?
Run the following in a query window on both servers: SELECT @@VERSION
If...
Jeffrey Williams
“We are all faced with a series of great opportunities brilliantly disguised as impossible situations.”
― Charles R. Swindoll
How to post questions to get better answers faster
Managing Transaction Logs
May 21, 2010 at 7:17 pm
mike 57299 (5/21/2010)
Lamprey13 (5/21/2010)
Have you investigated using a "listener" app that...
Jeffrey Williams
“We are all faced with a series of great opportunities brilliantly disguised as impossible situations.”
― Charles R. Swindoll
How to post questions to get better answers faster
Managing Transaction Logs
May 21, 2010 at 6:26 pm
How are you determining that the SP isn't using any memory? Does the procedure execute and return the desired results? Does it take less/more time than on the...
Jeffrey Williams
“We are all faced with a series of great opportunities brilliantly disguised as impossible situations.”
― Charles R. Swindoll
How to post questions to get better answers faster
Managing Transaction Logs
May 21, 2010 at 6:20 pm
Viewing 15 posts - 3,781 through 3,795 (of 6,676 total)