Viewing 15 posts - 6,571 through 6,585 (of 7,636 total)
Try this:
SELECT Metal, min(Result), max(Result), count(Result), stdev(Result)
FROM Metals
GROUP BY Metal
By the way, stdev() is the statistical standard deviation, if you want the standard deviation for a population ,...
June 20, 2008 at 6:34 am
Sherjon (6/19/2008)
Please do. That Save button would be awesome.
BTW, I did not mean to offend you in any way with the 'winner' comment. It just happened to be...
June 20, 2008 at 6:18 am
Perhaps they just rolled back. Are you tracing Commits and Rollbacks also?
June 19, 2008 at 7:40 pm
marin (6/19/2008)
I'm trying to split a text (e.g. "MR. JOHN SMITH" or "MRS. JANE AUSTIN SMITH") into chunks in order to be able to extract certain blocks: in this...
June 19, 2008 at 5:53 pm
Sherjon (6/19/2008)
The SQL Server 2000 script would generate an...
June 19, 2008 at 5:24 pm
By the way, his name isn't Grasshopper, that's his posting rank. His name is asdfgh.
June 19, 2008 at 5:21 pm
Try this:
select *
from table1
cross join (select '0' as N
Union All Select '1' as N
Union All Select '2' as N
...
June 19, 2008 at 4:12 pm
Sherjon (6/19/2008)
We installed the x86 version of SP2 because we have 32 bit machines. We have the 'script' entry for Tools which is nice because...
June 19, 2008 at 3:50 pm
Put it in its own schema, Deny acces to the Schema, then grant access to the object.
June 19, 2008 at 3:38 pm
This will list them all:
select *
from Information_Schema.Tables
Where Table_Type = 'View'
And Table_Schema = '-Your Schema Name-'
Of course, if you want to Delete them, you don't have to...
June 19, 2008 at 3:34 pm
Here you go:
ALTER function [dbo].[fnSplit1](
@parameter varchar(Max)-- the string to split
, @Seperator Varchar(64)-- the string to use as a seperator
)
RETURNS @Items TABLE(
ID INT-- the element number
, item VARCHAR(8000)-- the...
June 19, 2008 at 12:34 pm
Does this article help?: http://www.sqlservercentral.com/articles/SSIS/63152/
June 19, 2008 at 12:01 am
Viewing 15 posts - 6,571 through 6,585 (of 7,636 total)