Viewing 15 posts - 946 through 960 (of 2,038 total)
Hi
If MIN is not the solution you are looking for you should take GSquared's solution with a CTE.
Greets
Flo
May 15, 2009 at 2:41 am
I'm a city guy from here but Munich is a very green city with many parks.
Anyway, 30 minutes to some nice lakes and 45 minutes to the Alps is really...
May 15, 2009 at 2:38 am
May 14, 2009 at 3:43 pm
:sigh:
This script definitely becomes part of my hall-of-blame.
Next version up and (hopefully) running
Flo
May 14, 2009 at 3:39 pm
mmunson (5/14/2009)
May 14, 2009 at 3:27 pm
:w00t:
Maybe I should shutdown my system and go to bed... 😛
Changed the script again.
Greets
Flo
May 14, 2009 at 3:16 pm
Oups, sorry. I forgot the "AS" at the end of the second line (as most times... :hehe:)
I just corrected my previous post. Now it should work.
Greets
Flo
May 14, 2009 at 2:55 pm
Hi
I would use a CTE to encapsulate the CRM_STATUSCODES and join it instead of the table.
; WITH
status_codes (TransactionId, End_Date, System_Status, RecId) AS
(
select
...
May 14, 2009 at 2:42 pm
Hi
I would use GROUP BY and MIN.
DECLARE @t TABLE (GroupId INT, Subgroup INT)
INSERT INTO @t
SELECT 1, 11
...
May 14, 2009 at 2:04 pm
I would also use old-school batch files (or new-school power-shell files).
If you want to use a tool try FileZilla.
Greets
Flo
May 14, 2009 at 1:58 pm
ALZDBA (5/14/2009)
OP dated 04/2004 ?? 😉
😀
Didn't notice.
May 14, 2009 at 1:51 pm
Hi
It's very hard to help without some sample data or more information. As you say the trigger (part you posted) doesn't generate a syntax error. So it depends on your...
May 14, 2009 at 1:37 pm
lmu92 (5/14/2009)
Well, that looks similar to the solution posted in http://www.sqlservercentral.com/Forums/FindPost713749.aspx%5BDoesn't it?;-)
Psst, Lutz. Remove the "[" at the end of your link 😉
May 14, 2009 at 11:28 am
Hi
The right time for stored procedures? After the connection opened in your application.
It seems to be an overkill at the beginning to do any data-access (SELECT/INSERT/UPDATE/DELETE) within procedures. Some reasons:
1.)
Keep...
May 14, 2009 at 11:18 am
Hi
30 million users? Congratulate to your sales management! 😛
I don't understand the specific problem. Do you have duplicates which have to be removed? Do you want to know how you...
May 14, 2009 at 4:37 am
Viewing 15 posts - 946 through 960 (of 2,038 total)