Viewing 15 posts - 556 through 570 (of 860 total)
what query are you using to generate the table of data (the id risk rating...)
April 13, 2012 at 3:15 pm
not really can you put the output you would like to see? something like this:
cat ...
April 13, 2012 at 3:06 pm
ewhitaker (4/13/2012)
--------------------new sql statement--------------
select 'a' + convert(nvarchar, risk_rating) as cat,
count(distinct orderfindings.prnt_id) as stat
from orderheader, orderaudits, orderfindings, orderagencies
where orderheader.id = orderaudits.orderheader_id and (orderaudits.ID = orderfindings.prnt_id or orderaudits.ID = orderagencies.prnt_id...
April 13, 2012 at 2:52 pm
hbtkp (4/13/2012)
ok.just tell me logic
how can i get if this dates r missing in field
you need to add the missing dates to the data source. if the dates are...
April 13, 2012 at 2:43 pm
SQLRNNR (4/13/2012)
L' Eomot Inversé (4/13/2012)
Jeff Moden (4/13/2012)
capn.hector (4/13/2012)
April 13, 2012 at 2:38 pm
Lynn Pettis (4/13/2012)
April 13, 2012 at 2:31 pm
here it is posted here
CREATE TABLE orderheader
(id int)
CREATE TABLE orderaudits
(id int,
OrderHeader_ID int,
Risk_Rating int,
Investor_Name nvarchar(50))
CREATE TABLE orderfindings
(id int,
Prnt_ID int,
Finding_nbr char(10)
)
CREATE TABLE orderagencies
(id int,
Prnt_ID int,
Agency_nbr char(10)
)
insert into orderheader
values (1)
--------------------------------------------------
insert into orderaudits
values (1,1,1,...
April 13, 2012 at 1:18 pm
also from the specific times there was probably a query in the company some one tuned from 20 min to 2 seconds and the interviewer knows exactly what was done...
April 13, 2012 at 12:53 pm
hbtkp (4/13/2012)
BASICALLY PITEM AND PITEM4 Calling function fitem and fitem4
now this two function item has data for some fromdate and to date and values
item4 has fromdate,todate and vales,but for all...
April 13, 2012 at 12:01 pm
jitendra.padhiyar (4/13/2012)
So i want...
April 13, 2012 at 11:58 am
hbtkp (4/13/2012)
now get me solution
Wow. um no. considering i still dont have all the info i requested in a nice readable format and now you seem to be...
April 13, 2012 at 11:51 am
i was looking at this and seeing your code just made me realize how much i need to learn to think about problems better.
April 13, 2012 at 11:47 am
hbtkp (4/13/2012)
CREATE FUNCTION item1(@Data [varbinary](max))
RETURNS TABLE (
item2 varchar,
item3 int)
now i need to...
April 13, 2012 at 11:36 am
hbtkp (4/13/2012)
i m trying to help u as much as possible.
there is nothing in sp, sp calling...
April 13, 2012 at 11:35 am
Viewing 15 posts - 556 through 570 (of 860 total)