Viewing 15 posts - 11,761 through 11,775 (of 26,486 total)
Only thing that comes to my mind at the moment would be one or more long running transactions.
Could be other things, just not sure what at the moment to suggest.
May 22, 2012 at 2:46 pm
Is there anything else going on with this database? Is it part of a mirror or anything like that?
May 22, 2012 at 2:38 pm
Only thing I can suggest at this point is to double check your server properties.
May 22, 2012 at 2:37 pm
Can you confirm that your transaction log backups are running successfully?
May 22, 2012 at 2:30 pm
DBA_SQL (5/22/2012)
Reduce page count
Delete data.
Trying to understand why you are focusing on page count. As data is added to the database the page count is going to go up.
May 22, 2012 at 2:28 pm
2008 R2 Web edition
Unfortunately, this edition of SQL Server only supports being a subscriber to replication.
http://msdn.microsoft.com/en-us/library/cc645993(v=sql.105).aspx
May 22, 2012 at 2:16 pm
Daxesh Patel (5/21/2012)
I am trying to setup performance counter on a non-domain...
May 22, 2012 at 2:04 pm
SQLKnowItAll (5/22/2012)
Lynn Pettis (5/22/2012)
timwell (5/22/2012)
We have 2008 R2 Web edition
This implies that the application is web-based. Does each remote site have their own web server and database server or do...
May 22, 2012 at 1:57 pm
timwell (5/22/2012)
We have 2008 R2 Web edition
This implies that the application is web-based. Does each remote site have their own web server and database server or do they all hit...
May 22, 2012 at 1:51 pm
mwood 57977 (5/22/2012)
List of employee total pay hours for last week
How much of that was zvaca, zhol, zawar, etc.
There are three tables that...
May 22, 2012 at 1:47 pm
We have 2008 R2 Web edition
This implies that the application is web-based. Does each remote site have their own web server and database server or do they all hit...
May 22, 2012 at 1:36 pm
chrisdicentes (5/22/2012)
2 Win2k8R2 Servers running SQL 2k8R2 Standard edition servers in a failover cluster with a single service (Default SQL instance).
I need to move this service to SQL...
May 22, 2012 at 1:31 pm
You may need to make a slight change to the insert when a person loses. I just copied what was from the won side.
May 22, 2012 at 1:28 pm
Is this what you are attempting to accomplish?
CREATE PROCEDURE Casino.Sp_SlotMachine
@User NVARCHAR(10)
,@bet INT
AS
BEGIN
DECLARE @L_Wheel VARCHAR;
DECLARE @M_Wheel VARCHAR;
DECLARE @R_Wheel VARCHAR;
SET @L_Wheel = (
SELECT TOP 1 AA
FROM Casino.Symbols AS...
May 22, 2012 at 1:24 pm
Can you be a little more specific about your problem?What is, or isn't happening? Are you getting some kind of error message?
May 22, 2012 at 1:18 pm
Viewing 15 posts - 11,761 through 11,775 (of 26,486 total)