Viewing 15 posts - 1 through 15 (of 443 total)
Execution can be very helpful. But without plan, I came up with the following code. You can try;
-- Get the SamplesPartner Meta Table Ids
DECLARE @specimenMetaTableSqlId SMALLINT
DECLARE @specimenMetaTableIncId INT
SELECT @specimenMetaTableSqlId...
April 19, 2016 at 2:59 am
Hello,
I am learning PowerPivot so It might be a stupid question. Sorry for that in advance. My question is why do we have to install Analysis Services for using PowerPivot...
December 5, 2013 at 11:55 am
The script seems to be embeded with special characters. Please remove tab before + name + in the query right after --Data approach comment and then execute.
-- Data approach
Select @vCols...
October 4, 2010 at 10:17 pm
you can find fnSplit on the net. just google it and you will find the code for it.
This is just an approach of performing a task...
September 16, 2010 at 4:17 am
The Danish Dynamo (7/30/2010)
i posted that solution years ago, you just copied it and messed it up, please delete it
Really :w00t:? And how "messed up"?
July 31, 2010 at 12:50 pm
WHILE loop is there by mistake (was testing something before posting it). Please ignore it.
July 27, 2010 at 10:22 pm
You are using user defined data types.
I changed the table structure and then inserted the records. Nothing seem to be wrong. Can you please give some details;
CREATE TABLE dbo.LU_OVERVIEW_CONTROL_PAGE
...
July 26, 2010 at 6:42 am
Interesting and superb testing. I would definitely check the XML approach on monday morning. Its weekend now.:-)
Thanks.
July 23, 2010 at 1:08 pm
plz check my last posted query. Its working fine.
July 20, 2010 at 11:36 am
Thanks for pointing Doug. Try this;
Declare @vTable Table(id int,val varchar(Max))
Insert into @vTable Values (1,'Atif1 SS')
Insert into @vTable Values (2,'Asif2 SS')
;with wcte (id,val,strpos) as
(
Select id,substring(val,0,case when charindex(' ',val,0) = 0...
July 19, 2010 at 10:17 pm
Dear paul_ramster,
First of all, thanks for the new version of the query and sharing your knowledge. That is why we (at least I visit this website.)
The point raised by...
July 14, 2010 at 5:47 am
My question is this: What matters more,in large sets of data, execution time, or execution cost?
As a DB guy, I think both of them are important. As a client, its...
July 8, 2010 at 10:48 pm
Viewing 15 posts - 1 through 15 (of 443 total)