Viewing 14 posts - 46 through 59 (of 59 total)
Here it is.
USE [itiserver]
GO
DECLARE @return_value int
EXEC @return_value = [dbo].[csp_AddDMUser]
...
August 15, 2008 at 5:34 pm
Yes, I just create a test account and it came back with the same thing.
August 15, 2008 at 5:17 pm
Below is what I get when I try running it manually.
USE [itiserver]
GO
DECLARE@return_value int
EXEC@return_value = [dbo].[csp_AddDMUser]
@username = N'STATION1'
SELECT'Return Value' = @return_value
GO
Msg 15118, Level 16, State 1, Line 1
Password validation failed. The...
August 15, 2008 at 4:50 pm
I guess its erroring out in the stored procedure somewhere. I'll have to take a look at it. I know at one point I was able to log into the...
August 15, 2008 at 4:18 pm
It set for failed logins only. Since that is set, should it show up in the SQL Server Log in SSMS?
August 15, 2008 at 3:52 pm
OK, this is going to be stupid question, how and where do I check that in SQL 2005? Are you talking about the log file viewer or profiler? Or, are...
August 15, 2008 at 10:14 am
I set the check policy to off for the SA account. So, I don't think that's it.
August 14, 2008 at 4:53 pm
How do I go about finding what the most used indexes are?
August 11, 2008 at 3:34 pm
My mistake. I meant NDF (secondary database file).
Thanks.
August 11, 2008 at 12:29 pm
Not the transaction log, the data file. . Right now the data file is roughly 17 GB.
August 11, 2008 at 12:04 pm
Do you delete the indexes to disable a nonclustered index? Also, do you truncate a table by shrinking the database?
July 31, 2008 at 11:08 am
The reason for the request is compare with other rows that there aren't any duplicate images.
June 18, 2008 at 9:23 am
Viewing 14 posts - 46 through 59 (of 59 total)