Viewing 15 posts - 4,111 through 4,125 (of 9,643 total)
Can you provide the DDL and some sample data for the narrativeTest table that you are updating in the trigger?
What do you want to do if the row does not...
October 7, 2009 at 2:41 pm
My take is that SSC is just not a popular place to post jobs or to look for jobs. This forum is used more for getting help on putting...
October 7, 2009 at 2:20 pm
Once I learned about Case Sensitivity in the Lookup Transformation I did not use the Fuzzy Lookup anymore. I don't know if there is caching in the Fuzzy Lookup...
October 7, 2009 at 2:16 pm
Jeff Moden (10/5/2009)
DECLARE @DOB DATETIME
SET @DOB = '2008-03-01'
DECLARE @Now DATETIME
SET @Now = '2009-03-01'
--===== This is...
October 7, 2009 at 8:52 am
Lynn Pettis (10/6/2009)
RBarryYoung (10/6/2009)
Lynn Pettis (10/5/2009)
I'm taking a 2 week vacation starting next week, and I may or may not...
October 7, 2009 at 6:05 am
Cool, I haven't had time to try it so I didn't know and it didn't sound like you had tried it in a Logon Trigger either. It is interesting...
October 6, 2009 at 1:03 pm
You should check your Windows Event Log and SQL Server Error Log because it sounds like it was having some issues communicating with AD.
October 6, 2009 at 12:01 pm
Sorry about that last post. Believe it or not it looks like the LOGON event does not contain ApplicationName. Here is the list of elements for the LOGON...
October 6, 2009 at 12:00 pm
Please, please listen to Michael Earl. Look into Service Broker or just roll your own asynchronous solution. Also you could do SQL Server replication.
October 6, 2009 at 8:41 am
Looks like, based on the EventData schema, you only need:
@data.value('(/EVENT_INSTANCE/ApplicationName)[1]', 'nvarchar(512)')
October 6, 2009 at 8:39 am
Interesting. The user should be able to connect via the group. I am using that on my SQL Server without issue. Do you have multiple domain controllers?...
October 6, 2009 at 8:27 am
You might want to check out this site[/url]. It has some examples.
You may also want to check out this blog.
October 6, 2009 at 8:17 am
I don't know of a way to find what is only SQL Server 2008 compatible, but you can download and run the SQL Server Upgrade Advisor to make sure you...
October 6, 2009 at 8:02 am
I haven't used ntext but the ASCII code for the NULL character is 0 so you could use CHAR(0) or probably better in your situation NCHAR(0).
October 6, 2009 at 7:41 am
Viewing 15 posts - 4,111 through 4,125 (of 9,643 total)