Viewing 15 posts - 1,621 through 1,635 (of 6,401 total)
dprasannain (12/10/2015)
insert into #emps values
('A'),
('B'),
('C'),
('D')
DECLARE @Names VARCHAR(8000)
SELECT @Names = COALESCE(@Names + ', ', '') + char(39)+en+char(39)
FROM #emps
print @Names
-- This query does'nt return any values when...
December 10, 2015 at 8:41 am
Post the full code you have executed, that code isn't in my snippet so you have modified it some how to work with your environment
December 10, 2015 at 8:25 am
It all comes down to how you want to handle nulls
First COALESCE returns a null due to the null in the table
Second COALESCE returns a string but with *** in...
December 10, 2015 at 6:50 am
richardmgreen1 (12/10/2015)
I don't think we'll be getting Enterprise edition but I'll check.My concern is that Business Intelligence edition won't mirror to Developer edition.
Forgive my ignorance but why mirror to the...
December 10, 2015 at 6:42 am
COALESCE will work, you just need to ensure that you escape any nulls in the table correctly with an ISNULL or take a look at FOR XML PATH
http://stackoverflow.com/questions/194852/concatenate-many-rows-into-a-single-text-string
December 10, 2015 at 6:36 am
rodjkidd (12/9/2015)
Wed May 4th to Sat May 7th
Liverpool Exhibition Centre
Now what do to about the ticket I have for Yes...
December 10, 2015 at 6:08 am
Why the coalesce function, does the table contain nulls in the column?
Given that its an employee table I would be shocked to find a employee with no name.
What it looks...
December 10, 2015 at 5:56 am
Do you not have the formatting toolbar in BIDS?
December 10, 2015 at 2:17 am
Ed Wagner (12/9/2015)
Stuart Davies (12/9/2015)
Ed Wagner (12/8/2015)
crookj (12/8/2015)
Luis Cazares (12/8/2015)
Ed Wagner (12/8/2015)
Revenant (12/8/2015)
Ed Wagner (12/8/2015)
crookj (12/8/2015)
lithopanspermiaStar Trek
Voyage
Home
Alone
Sticky (bandits)
Burn (hair)
Rubber
Road
Kill
December 9, 2015 at 5:47 am
Not used time columns in SSRS so this may not work, but will need to create an expression in the tablix something like
Fields!Shift_Start.Value + " - " + Fields!Shift_End.Value
You may...
December 9, 2015 at 4:42 am
Stuart Davies (12/8/2015)
Revenant (12/7/2015)
ZZartin (12/7/2015)
DonlSimpson (12/7/2015)
whereisSQL? (12/7/2015)
djj (12/7/2015)
Ed Wagner (12/5/2015)
DonlSimpson (12/5/2015)
Ed Wagner (12/5/2015)
TomThomson (12/5/2015)
DonlSimpson (12/4/2015)
djj (12/4/2015)
crookj (12/4/2015)
Ed Wagner (12/4/2015)
crookj (12/4/2015)
RabbitSeason
Duck
Season (sorry could not resist)
Rabbit (go with it)
Welsh...
December 8, 2015 at 6:38 am
Ensure tempdb's log can grow, if it can then get a bigger drive.
From a query perspective, find everywhere you using #temp ##temp @table variables and see if you actually need...
December 4, 2015 at 2:59 am
jcachado (11/27/2015)
Thks for your help....still find the solution for me 🙁Regards,
Cachado
The error your getting is an Informix error not a Microsoft SQL Server error.
I would suggest posting this on an...
November 27, 2015 at 8:36 am
Jeff Moden (11/27/2015)
anthony.green (11/27/2015)
November 27, 2015 at 8:34 am
You may be best posting this on an IBM Informix forum instead of a Microsoft SQL Server forum.
November 27, 2015 at 3:47 am
Viewing 15 posts - 1,621 through 1,635 (of 6,401 total)