Viewing 15 posts - 11,971 through 11,985 (of 15,381 total)
Using the example provided previously something like this would work too.
CREATE TABLE #tmp
(ID int primary key)
INSERT INTO #tmp
VALUES
(1)
INSERT INTO #tmp
VALUES
(2)
INSERT INTO #tmp
VALUES
(3)
INSERT INTO #tmp
VALUES
(5)
INSERT INTO #tmp
VALUES
(9)
INSERT INTO #tmp
VALUES
(10)
INSERT INTO #tmp
VALUES
(11)
INSERT...
May 14, 2012 at 1:04 pm
tburk 5368 (5/14/2012)
CREATE FUNCTION [dbo].[ReplaceCharacters] ( @InputString...
May 14, 2012 at 12:44 pm
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
Viewing 15 posts - 11,971 through 11,985 (of 15,381 total)