Viewing 15 posts - 6,871 through 6,885 (of 8,753 total)
samp.silvercreek (9/23/2014)
Eirikur Eiriksson (9/22/2014)
More for fun, here is an alternative "solution", set to return six digits and the decimal separator.😎
I like this solution because it handles the "dangling decimal point"...
October 4, 2014 at 3:49 pm
Quick thought, full text search is not going to perform (or even work) when searching for a suffix, probably better off using the LIKE operator here.
😎
October 4, 2014 at 3:37 pm
Is it just me or does this smell like a spam? A quick search returned few similar postings referencing the same vendor on other sites.
😎
October 4, 2014 at 3:12 pm
thomashohner (10/4/2014)
October 4, 2014 at 2:37 pm
vinaygambhir (10/4/2014)
EXEC ('CALL GETENROLLMENT() ')At serverName which returns the two data sets.
I do not know how to...
October 4, 2014 at 2:03 pm
Meatloaf (9/30/2014)
Hi,Also, how can I do nesting?
Here is a quick nesting example
😎
USE tempdb;
GO
SET NOCOUNT ON;
;WITH SAMPLE_DATA(Location,Building,RoomName,Habitant )AS
(SELECT * FROM (VALUES
('USA','White House','Oval Office','Mickey Mouse')
,('UK','Whitehall','24hour Lounce','Donald Duck')
) AS X(Location,Building,RoomName,Habitant)
)
,LOCATION_DETAIL(Location,LocationType) AS
(SELECT...
October 4, 2014 at 1:11 pm
Lynn Pettis (10/4/2014)
Definitely the weekend. I guess it is time to take a break from SSC.
Yet another spam-tastic weekend:angry:
😎
October 4, 2014 at 12:50 pm
vsamantha35 (10/4/2014)
I need some help on security. Checking if any Security experts can guide me here.
How to do a Security assessment for an database application?
What are things to have...
October 4, 2014 at 12:26 pm
thomashohner (10/4/2014)
Oddly when I remove the OR (r.Trimester >0) it runs in 50-55 seconds not the 8+ minutes.. Now very, very confused.
Quick thought, by removing the alternative predicate from the...
October 4, 2014 at 11:36 am
TomThomson (10/4/2014)
Eirikur Eiriksson (10/3/2014)
Steve Jones - SSC Editor (10/2/2014)
Note that THROW works well in some cases, RAISERROR in others.Learn how to use both.
It is worth noting that the THROW...
October 4, 2014 at 8:49 am
h2sh (10/3/2014)
i'm trying to work with full text search , i have create a view , but unfortunately , the view doesn't have a column which have a non duplicate...
October 4, 2014 at 4:02 am
Alan.B (10/2/2014)
October 4, 2014 at 3:04 am
Quick thought, use NULLIF or skip the ISNULL in the inner query for Actual_CurrentMonth and Budget_CurrentMonth to return NULL instead of 0, then remove those two columns from the group...
October 3, 2014 at 11:43 pm
Quick thought, what is the data type of the MANUFACTUREDDATE column? If the MANUFACTUREDDATE is a character column of the format MM/DD/YYYY (101) then you must always use the 101...
October 3, 2014 at 11:00 pm
Had this handy (straight from BOL);-) should get you passed the hurdle.
😎
/* Relevant date time functions with BOL comments*/
SELECT
/* Returns the current database system timestamp as a datetime
...
October 3, 2014 at 10:39 pm
Viewing 15 posts - 6,871 through 6,885 (of 8,753 total)