Viewing 15 posts - 1,186 through 1,200 (of 2,008 total)
Actually am using client machine where i have configured for windows and sql server authentication mode ..
We define authentication mode at Server Level. Client utility just passes the credentials.
December 1, 2011 at 7:30 am
Troubleshooting: Login Failed for User 'x'
http://msdn.microsoft.com/en-us/library/ms366351.aspx
FIX: Error message when you try to use a SQL Server authenticated login to log on to an instance of SQL Server 2005: "Logon error:...
December 1, 2011 at 7:16 am
I shared following with you yesterday. Didn't it help?
December 1, 2011 at 7:04 am
Welsh Corgi (11/30/2011)
@dev all of thie information that I was gathering from the Database Triggers is stored in a DMV.Do you know which one?
Thanks.
I didn't get you... 🙁
December 1, 2011 at 6:58 am
Adi Cohn-120898 (12/1/2011)
Only if you have a backup.Adi
Backup includes SQL Server Backup as well as OS backups. Please check with your IT team if they have any OS backups of...
December 1, 2011 at 6:50 am
Execute following query & verify whether your SP exists in your database. If yes, which schema?
USE <database_name>;
GO
SELECT name AS procedure_name
,SCHEMA_NAME(schema_id) AS schema_name
,type_desc
,create_date
...
November 30, 2011 at 8:58 am
Jinu43 (11/30/2011)
Yes, I did check the event log and error log, both has same error logged which i already mention.
It's a serious issue. It's time to Call CSS.
BUT Read...
November 30, 2011 at 8:42 am
kyle.doouss (11/30/2011)
Thanks that works perfectly. Thanks for the quick response
Wouldn't you like to know the reason of failure of your code? 😛
November 30, 2011 at 8:35 am
Sean Lange (11/30/2011)
Dev (11/30/2011)
Lowell (11/30/2011)
with Org(Business_Line)
AS
( SELECT 'Blue' UNION ALL SELECT 'Orange' UNION ALL SELECT 'Others' UNION ALL
SELECT NULL UNION ALL SELECT 'Yellow' UNION ALL SELECT 'Green' UNION...
November 30, 2011 at 8:02 am
Why did you disable the trigger? Altering it with matching ANSI_NULLS setting should be fine.
Will you not loose trigger functionality, if you disable it?
November 30, 2011 at 7:54 am
Lowell (11/30/2011)
with Org(Business_Line)
AS
( SELECT 'Blue' UNION ALL SELECT 'Orange' UNION ALL SELECT 'Others' UNION ALL
SELECT NULL UNION ALL SELECT 'Yellow' UNION ALL SELECT 'Green' UNION ALL
SELECT 'Red' UNION ALL SELECT...
November 30, 2011 at 7:49 am
franzambesten (11/30/2011)
Yes, I know that, I need to know which are the steps to follow to accomplish this goal, after disabling the mirroring...
Database Mirroring Administration How-to Topics (Database Engine)
http://msdn.microsoft.com/en-us/library/ms175059(v=SQL.90).aspx
November 30, 2011 at 7:45 am
Sean Lange (11/30/2011)
Jeff Moden (11/30/2011)
November 30, 2011 at 7:41 am
Is there any Indexed View defined on the table? Following issue is related to 'ARITHABORT' setting. It might be applicable to 'ANSI_NULLS' as well.
PRB: Error "INSERT Failed" When You Update...
November 30, 2011 at 7:21 am
Viewing 15 posts - 1,186 through 1,200 (of 2,008 total)