Viewing 15 posts - 121 through 135 (of 153 total)
Jason... DANG exactly!!!
except i think you have this part as well, IF the part such as an example: for the scooter, if you dont have enough scooters to meet the...
January 4, 2016 at 3:57 pm
THANK YOU JAYANTH!
yup that worked 🙂 you da man 🙂
December 10, 2015 at 10:21 pm
thank you both again for your help, i found this article that helped me the rest of the way:
hope it helps others as well. but thank you again...
December 8, 2015 at 2:06 pm
thank you serg-52, and jeff.
thanks to you both I am all that close to getting my objective done.
now that I have the query I want it, or maybe I do,...
December 8, 2015 at 1:24 pm
sorry about that,
let me start with this:
create table #table_name
(
partnum varchar(10),
Mpartnum varchar(20),
typecode varchar(1000)
)
insert into #table_name(partnum,Mpartnum,typecode)
values('bike10','tires2','P')
insert into #table_name(partnum,Mpartnum,typecode)
values('bike10','Handle','P')
insert into #table_name(partnum,Mpartnum,typecode)
values('tires2','plastic','P')
insert into #table_name(partnum,Mpartnum,typecode)
values('plastic',' ','M')
;WITH info
as
(
select *
,0 as [Level]
,Cast(Mpartnum as...
December 7, 2015 at 7:03 pm
OK I found my problem, however definitely need your guys help, so here is the correct code:
;WITH Info
as
(
select distinct pm.company,jh.ProjectID,pm.PartNum,p.PartDescription,pm.MtlPartNum
,COALESCE(pq.OnHandQty,0.00) OnHandQty
,COALESCE(od.OrderQty,0.00) OrderQty
,SUM(jm.RequiredQty) RequiredQty,p.TypeCode
,0 as [Level]
,Cast(pm.Partnum as Varchar(255)) as [Path]
from erp.PartMtl...
December 7, 2015 at 6:39 pm
Yes they are very small, but very frequent, so, any help or answers to my question? what do you think?
thanks in advanced 🙂
September 24, 2015 at 12:05 am
Cool sorry for the confusion, yes page not page file, also one other question in regards to heaps and clustered index, the difference between the clustered pages and heap pages...
May 9, 2014 at 2:14 pm
Just a quick update/correction, the url above doesnt work when you remove the ssrs server, however this does:
http://sgisqlprod02/Reports_SGI_REPORTS/Pages/%3Ca%20href=%22http://www.treasury.gov/ofac/downloads/t11sdn.pdf#Khan, Farhan"></a>
so if you remove from http://sgisqlprod02 all the...
October 5, 2012 at 12:04 pm
Solved problem, what i did was instead of CTE used a temp table then I queried.
Thank you anyways 🙂
June 21, 2012 at 5:27 pm
Hello,
I am getting close, but my query will not show the First Names from new customers table, what it will show is "FirstName" all the rows, which i want to...
June 21, 2012 at 2:05 pm
sorry all, my fault, yes i definitly want to say dwain solved the problem, when i did it, i was doing it on the same table X(, again my fault,...
June 21, 2012 at 11:48 am
Hello Dwain,
maybe you can help me answer my other question, which might solve the problem, i am going to make a temp table, then insert the records I want from...
June 19, 2012 at 9:07 am
Hello everyone
thanks dwain for the correction, however I have tried what you have and came up with the same results for example:
if i do the rowid = row_Number() etc., but...
June 19, 2012 at 5:40 am
Hello Lynn,
thank you for the fast reply, sadly i removed the Go part and now it says:
"An error occured while the query design method was being saved. Incorrect Syntax Near...
June 14, 2012 at 10:50 am
Viewing 15 posts - 121 through 135 (of 153 total)