Viewing 15 posts - 1,801 through 1,815 (of 2,452 total)
sql-lover (8/18/2012)
I am not working today, but several GBs ... over of 10 millions rows, off top of my head.
I do not remember the numbers exactly, but it...
August 18, 2012 at 10:47 am
how big is "big" ??
row numbers
columns numbers
file size
index size
??
August 18, 2012 at 10:32 am
SELECT Id, AVG(Amount)
FROM #TempMid
GROUP BY Id
August 18, 2012 at 12:29 am
asranantha (8/16/2012)
August 16, 2012 at 5:56 am
laurie-789651 (8/15/2012)
August 15, 2012 at 2:32 pm
priest Ivan Delic (8/13/2012)
I forgot one thing. In paper-data there is about 30 books with 100 pages in each of them. On each page there is 10 records, so 1,000...
August 14, 2012 at 2:36 pm
I think I may now understand what you are trying to do....but there again I may well be completely wrong!
You have a "printing application" that requires a table as its...
August 13, 2012 at 8:15 am
possibly another way....assuming you want a random image returned.
does this return what you want?
declare @cattyp varchar(3)='cri'
;with cte as
(
SELECT alid ,
imageid ,
...
August 13, 2012 at 3:13 am
rVadim (8/12/2012)
J Livingston SQL (8/12/2012)
try removing the GROUP BY
The OP included Id in the list. So, i thought s/he wants totals by Id, not over all table. So, which is...
August 12, 2012 at 11:05 am
suggest you search this site for "concatenate rows", crosstabs / pivots
one method that will do as you ask is by using "FOR XML PATH"
here is an example
with produce (id,fruit,...
August 12, 2012 at 7:44 am
try removing the GROUP BY
SELECT TotalCost = SUM( Cost ) ,
Cost0 = SUM( CASE WHEN Code = 0 THEN Cost END )...
August 12, 2012 at 3:55 am
sivag (8/11/2012)
i just found the solution for this my friends no thanks
Hello sivag
would you care to share the solution you found please?
This may well assist othesr in...
August 11, 2012 at 4:34 pm
Hello
could you please provide some sample data for each of your tables and also what results you are expecting, based on the sample data, once they are all put into...
August 11, 2012 at 4:03 pm
just an idea ...anywhere close to what you require?
CREATE TABLE [dbo].[Table_1](
[ID] [int] NULL,
[Val] [varchar](1) NULL
) ON [PRIMARY]
INSERT INTO [dbo].[Table_1]([ID], [Val])
SELECT 1, N'A' UNION ALL
SELECT 2, N'B' UNION ALL
SELECT 3, N'C'...
August 10, 2012 at 1:42 pm
ashwinrao.k23 (8/10/2012)
For exmaple if i have the fields like below
File Main ...
August 10, 2012 at 1:33 pm
Viewing 15 posts - 1,801 through 1,815 (of 2,452 total)