Viewing 15 posts - 11,971 through 11,985 (of 15,379 total)
tburk 5368 (5/14/2012)
CREATE FUNCTION [dbo].[ReplaceCharacters] ( @InputString...
May 14, 2012 at 12:38 pm
Hollyz (5/14/2012)
select TOP 1000
E.[Last Name]
, E.[First Name]
, E.[Department]
, Support.[SupportLvl]
FROM Employee E
Where exists (select * from Support
...
May 14, 2012 at 9:31 am
Can you try to explain more clearly what you are trying to do?
May 14, 2012 at 9:28 am
Start with reading the first link in my signature. It explains how to best post questions in order to receive an answer.
May 14, 2012 at 9:22 am
hhmmmm I suspect this is not really what your view definition looks like. I have a feeling this is pseudocode for what they are doing. If you really want help...
May 11, 2012 at 2:45 pm
themangoagent (5/11/2012)
Jeff Moden (5/10/2012)
May 11, 2012 at 2:37 pm
Yeah this certainly does have the feeling of fixing the symptom instead of the problem.
May 11, 2012 at 1:31 pm
annastassia1935 (5/11/2012)
May 11, 2012 at 1:27 pm
The [lab_seq] column is updated within the code using the array index. A decision was made years ago to DELETE and INSERT as a way to update the data from...
May 11, 2012 at 1:15 pm
komal145 (5/11/2012)
Insert into dbo.Doc_Activity (Entry_Id,Event_Type_Id,Event_Value,Event_Time,User_Name_Event,Last_Updated_User,Last_Updated)
values ( 91,5, 'Indexing',2012-04-23 15:51:53.177,asdf,asdf,2012-04-23 15:51:53.177)
Insert into dbo.Doc_Activity (Entry_Id,Event_Type_Id,Event_Value,Event_Time,User_Name_Event,Last_Updated_User,Last_Updated)
values ( 91,4, 'Intake',2012-04-23 15:51:53.177,asdf,asdf,2012-04-23 15:51:53.177)
Insert into dbo.Doc_Activity (Entry_Id,Event_Type_Id,Event_Value,Event_Time,User_Name_Event,Last_Updated_User,Last_Updated)
values ( 298,5, 'Indexing',2012-05-05 23:31:22.660,asdf,asdf,2012-04-23 15:51:53.177)
Insert...
May 11, 2012 at 1:01 pm
Lynn Pettis (5/11/2012)
Sean Lange (5/11/2012)
May 11, 2012 at 12:48 pm
Lynn Pettis (5/11/2012)
Sean Lange (5/11/2012)
May 11, 2012 at 12:47 pm
This pretty simple but I am rather swamped at the moment. If you post ddl and insert statements I can knock this out in a couple minutes. I just don't...
May 11, 2012 at 12:42 pm
Lynn if you keep providing answers there is no incentive for the posters to provide the details for you. They will just learn that you will eventually do it for...
May 11, 2012 at 12:40 pm
The article you referenced is going the other way. Maybe you can just reverse the logic? :-D:-D:-D
The link I sent you is the easiest way to do this. I can...
May 11, 2012 at 12:33 pm
Viewing 15 posts - 11,971 through 11,985 (of 15,379 total)