Viewing 15 posts - 4,456 through 4,470 (of 7,164 total)
Luk (4/16/2012)
So not specifying the file number after "log_" assumes that it will point to the first trace file available?
Correct, you do not need to provide the number.
Here is...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
April 17, 2012 at 5:22 pm
I am picking up on some terminology issues. For the record, and to clear up the terminology, we need a Server Login and a Database User. The Server Login is...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
April 17, 2012 at 4:39 pm
Something like this?
USE tempdb
GO
CREATE TABLE dbo.three_columns
(
A INT NULL,
B INT NULL,
C INT NOT NULL
);
GO
ALTER TABLE dbo.three_columns ADD CONSTRAINT [ck_dbo.three_columns.C] CHECK
(
(C = 150 AND...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
April 17, 2012 at 3:20 pm
Matthew Cushing (4/17/2012)
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
April 17, 2012 at 3:08 pm
Have you checked your event logs for disk i/o errors? Have you had any system failures lately, i.e. blue screens, raid controller issues, etc.?
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
April 17, 2012 at 2:09 pm
How to Recover From Being Locked Out of a SQL Server 2005 database
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
April 17, 2012 at 1:21 pm
If you're open to using SSIS to FTP the file then are you open to using SSIS to also get the data into the file in the first place? This...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
April 17, 2012 at 11:32 am
SQL Server can be scaled-out by leveraging Service Broker but it requires a home-grown solution that would be very labor-intensive to implement in terms of the amount of development required....
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
April 17, 2012 at 10:20 am
hiram.osiris (4/17/2012)
This warning message will be kind of annoying for developers who are used to the GUI.
I have no sympathy for those folks 🙂 I would tap my opportunistic side...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
April 17, 2012 at 9:58 am
Which version of SQL Server are you using? The last message from Microsoft in June 2011 says "This will reflect in an upcoming release of SQL Server." and the item...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
April 17, 2012 at 9:56 am
Found this. Says State = 16 means the users failed to log into the target database.
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
April 16, 2012 at 9:45 pm
PS if the "machine" is the local machine it could be a service running under the "local system" account. Even in that case my recommendation about finding the source before...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
April 16, 2012 at 5:35 pm
The $ after the name signifies it's a machine account, i.e. the name before the $ identifies a server. It means that something running on that machine tried to log...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
April 16, 2012 at 5:33 pm
winston Smith (4/16/2012)
When I say I remote in, I meant I'm now at home and so had to remote into the servers,...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
April 16, 2012 at 4:32 pm
winston Smith (4/16/2012)
Perry Whittle (4/16/2012)
winston Smith (4/16/2012)
I then ran setspn -d MSSQLSvc/server.domain domain\serviceAccount to remove the...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
April 16, 2012 at 4:13 pm
Viewing 15 posts - 4,456 through 4,470 (of 7,164 total)