Viewing 15 posts - 5,551 through 5,565 (of 15,381 total)
Lowell (3/4/2014)
March 4, 2014 at 2:55 pm
That looks a lot like a byte array. This is the typical way of storing binary type data in the database. I don't think there is a way to determine...
March 4, 2014 at 2:00 pm
curious_sqldba (3/4/2014)
Thank you taking time in replying.
So if you copy paste the ouput in excel you will see that just first two words are together and all the other one's...
March 4, 2014 at 1:04 pm
Seattlemsp (3/4/2014)
The goal it to find the record which the Matter and Cateogry has exact the Group assignment.
That's all the information I can think about. What's infomration...
March 4, 2014 at 12:55 pm
curious_sqldba (3/4/2014)
Sean Lange (3/4/2014)
curious_sqldba (3/4/2014)
Sean Lange (3/4/2014)
curious_sqldba (3/4/2014)
Jack Corbett (3/4/2014)
March 4, 2014 at 12:52 pm
SQLRNNR (3/4/2014)
I have seldom seen this kind of requirement. When I have, it is something we throw in the presentation layer. A common place...
March 4, 2014 at 12:49 pm
Or you could use shortcut this a little bit using aggregates.
select min(someval) as someval,
isnull(min(Category), 'No such Category') as Category
from #sometab
where Category = 'Unknown'
It kind of depends on if you...
March 4, 2014 at 12:39 pm
curious_sqldba (3/4/2014)
Sean Lange (3/4/2014)
curious_sqldba (3/4/2014)
Jack Corbett (3/4/2014)
March 4, 2014 at 12:33 pm
curious_sqldba (3/4/2014)
Jack Corbett (3/4/2014)
DECLARE @data NVARCHAR(MAX)...
March 4, 2014 at 12:20 pm
This is a classic example of why you shouldn't shove multiple data elements into a single column. It is a serious PITA to work with.
March 4, 2014 at 10:43 am
DaveK2014 (3/4/2014)
thanks Sean I will take a look at those.I have removed the UDF call as a test to see and still slow just as an FYI.
Not surprising. You have...
March 4, 2014 at 9:49 am
curious_sqldba (3/4/2014)
Jack Corbett (3/4/2014)
DECLARE @data NVARCHAR(MAX) = 'EXEC Proc_gen @PsID=12, @kID=-1, @ID=3183';
SELECT @data AS...
March 4, 2014 at 9:48 am
DaveK2014 (3/4/2014)
March 4, 2014 at 9:08 am
Also you have a scalar function in there.
left(dbo.udfBuyers(tbClient.ID), 30)as Buyers
This can be a very serious performance killer. Not sure what that function does but turning that function into an iTVF...
March 4, 2014 at 8:44 am
DaveK2014 (3/4/2014)
March 4, 2014 at 8:40 am
Viewing 15 posts - 5,551 through 5,565 (of 15,381 total)