Viewing 15 posts - 6,136 through 6,150 (of 10,144 total)
dwain.c (7/2/2012)
ChrisM@Work (7/2/2012)* You still have tables neoset_statisticsLocationTypesLangs and neoset_statisticsLocation_types_jt in your
FROM list, even though neither are referenced in the output, or by any joins, or the WHERE clause....
July 3, 2012 at 1:57 am
Just a hunch Les, but have you tried replacing the delete & update with MERGE?
-------------------------------------------------------------------------------------
-- Delete any previous record from today
-- Close out the previous record
MERGE CollectorTransitionHistory AS [target]
...
July 2, 2012 at 10:11 am
Sean Lange (7/2/2012)
ChrisM@Work (7/2/2012)
Sean Lange (7/2/2012)
July 2, 2012 at 9:14 am
Sean Lange (7/2/2012)
July 2, 2012 at 9:06 am
SELECT *
FROM #Sample s
CROSS APPLY (
SELECT ClaimCount = COUNT(*)
FROM #Sample
WHERE [Member ID] = s.[Member ID]
AND [Date of Service] >= s.[Date of Service]
AND [Date of Service] <=...
July 2, 2012 at 8:03 am
Ted_Kert (7/1/2012)
July 2, 2012 at 6:34 am
Jigneshal (7/2/2012)
MysteryJimbo (7/2/2012)
Jigneshal (7/2/2012)
I want to create a database for hospital management system.
but i dont have much idea to design db. Can anyone help creating db for hospital management.
It will...
July 2, 2012 at 2:32 am
mixalissen (7/2/2012)
ALTER VIEW [dbo].[neoset_dailySalesManReport]
AS
SELECT distinct TOP (100) PERCENT s.contentid,...
July 2, 2012 at 2:25 am
Those two rows with contentid = 1, which have a different furniturelocation: which other columns are different between the two rows?
Avoid using ORDER BY in views. If you check the...
July 2, 2012 at 2:03 am
_simon_ (7/1/2012)
July 2, 2012 at 1:52 am
Using an inline function may help somewhat. Here's the definition of your existing splitter:
--User Defined Function (InLine)
CREATE FUNCTION dbo.Split
(
@RowData nvarchar(2000),
@SplitOn nvarchar(5)
)
RETURNS @RtnValue table
(
Id int identity(1,1),
Data nvarchar(100)
)
AS...
June 29, 2012 at 8:01 am
Welsh Corgi (6/29/2012)
As soon as I add the first...
June 29, 2012 at 7:15 am
Viewing 15 posts - 6,136 through 6,150 (of 10,144 total)