Tagged Questions
3
votes
2answers
92 views
SQL Statistical sampling
I'm looking for some genius SQL help with a tricky statistical problem I'm having.
What I'm looking to do is pull a statistically balanced sample out of an unbalanced group of user profiles. Doing ...
1
vote
1answer
97 views
Ad hoc 2x2 contingency tables SQL Server 2008
I'm looking at ways of creating contingency tables in SQL Server 2008. They don't necessarily have to appear in the 2x2 typical matrix. I'd just like to know if anyone out there can see a better ...
2
votes
1answer
135 views
if auto_update_statistics is made ON by using sp_autostats for a particular index of a table will Statistics for every DML?
I hit upon auto_update_statistics on google, it suggest if we make this ON we do not need to update Statistics, SQL Server will do it.
I was wondering so for any Insert, Update(of Indexed Column), ...
0
votes
2answers
244 views
What exactly is saved in SQL Server Statistics? When they get updated? Is SQL Server itself is taking care of them?
I have been working with SQL Server as a Developer a while.
One thing I learnt is SQL Server manages Statistics which help Engine to create optimized execution plan.
I could not figure out what ...
0
votes
1answer
207 views
SQL Server Outlier Filter
I am looking for a way to perform basic outlier filtration on a column of data in SQL server.
Background
I have a log table that contains various actions and the times at which those actions ...
0
votes
1answer
265 views
weighted standard deviation in sql server without aggregation error
Redoing the weighted mean (which is already in another column) in working out the weighted-Sum-Of-Squared-Deviations, results in the error "Cannot perform an aggregate function on an expression ...
0
votes
1answer
84 views
Auto Created Statistics not getting deleted by Sql Server 2008
I ran into an error in Sql Server and after resolving it, I am looking for the reason why this was happening.
The situation is that I tried to alter a column in a table like this
Alter Table ...
1
vote
2answers
486 views
Getting “set statistics io on” results in t-sql for tuning
I want to add monitoring capabilities to a complex process involving many stored procedures.
In some cases I want to capture the number of logical reads produced by a single statement.
In other ...
2
votes
1answer
315 views
The setting 'auto create statistics' causes wildcard TEXT field searches to hang
I have an interesting issue happening in Microsoft SQL when searching a TEXT field. I have a table with two fields, Id (int) and Memo (text), populated with hundreds of thousands of rows of data. ...
11
votes
1answer
3k views
SQL why is SELECT COUNT(*) , MIN(col), MAX(col) faster then SELECT MIN(col), MAX(col)
We're seeing a huge difference between these queries.
The slow query
SELECT MIN(col) AS Firstdate, MAX(col) AS Lastdate
FROM table WHERE status = 'OK' AND fk = 4193
Table 'table'. Scan count 2, ...
1
vote
1answer
103 views
sql server and statistics profile
I am starting to look at the query optimizer in SQL server 2008 and I’m particularly interested in the statistics profile that can be shown for a query. So far i understand that the result shown for ...
1
vote
2answers
87 views
Effects of dropping PK on other indexes
I need to update a large number of keys in a large SQL Server 2005 database and will be dropping FKs and PKs on a bunch of tables, doing the update (which replaces the values of the PK/FK) and then ...
1
vote
3answers
116 views
get full hits information of site with asp.net
i want to get daily,monthly,yearly hits ( visit count ) of my site .
What is the best way to do this in asp.net ?
tnx.
3
votes
4answers
146 views
Do SQL Server statistics gather different data if they are updated under load vs. off peak usage?
Aright, basic question is: Has anyone heard anything that would imply that statistics need to be updated under daily use to be effective as opposed to off peak hours?
We had an issue with a database ...
2
votes
1answer
237 views
What is the mathematical way of calculating PERCENT_RANK() ,CUME_DIST() ,PERCENTILE_CONT() and PERCENTILE_DISC()
I am trying to figure out how these newly introduced function in SQL Server Denali CTP 3 is working but didnot understood properly.
There are ofcourse some articles on this but it has not been ...
0
votes
0answers
367 views
Using NTILE with less than 100 records?
I am using NTILE(100) to calculate the 95th percentile value in my column. In some cases where the number of records is less than 100, NTILE(100) returns a NULL when queried for the values in the 95th ...
1
vote
3answers
1k views
Calculating the 95th Percentile value?
I am trying to calculate the 95th percentile point in my table column and am using the TOP 95 PERCENT construct. I was wondering if the following approach is correct or if there is a better way of ...
2
votes
3answers
702 views
SQL Server - How to add a column of percentile values of another column?
I'd like to have a calculated field that gives me the percentile of a column's value in a table. What is the best way to do so?
I have a table with only one column containing values ranging from 0 ...
2
votes
2answers
207 views
Calculating a user rank
Suppose I have a table UserStatistics with following columns:
UserId (UNIQUEIDENTIFIER)
ViewCount (BIGINT)
SubscriberCount (BIGINT)
Rank (INT)
What would be the best way to give a rank of 1-10 or ...
1
vote
1answer
130 views
Report data, techniques to store summarized results instead of raw data
What techniques/tips can you give in regards to summarizing report data points so you don't have to store the raw data in the database?
For example, if I was storing page view traffic for a website, ...
2
votes
1answer
137 views
Rank of an item in SQL Server
In SQL Server 2008 R2, I'm trying to work out the rank of an individual item, as determined by the number of occurances. I can work out the rank of a number of items, i.e. the top ten instances of a ...
2
votes
1answer
293 views
Best Method For Storing Various Statistics in a Database
I'm developing a game where I will be storing all actions the user makes with their character as a statistic. If the player chooses to have his character attack with with a melee weapon. We increment ...
5
votes
2answers
814 views
Why do statistics get out of date so quickly in SQL Server?
We have a somewhat complex SQL update query which gets run a few times a month. Most of the time it seems to run really fast, but on some databases, it takes a really long time. After running an ...
5
votes
3answers
199 views
SQL Statistics and Indexes - How detailed are they?
Do the statistics (which help decide whether an index is to be used) take into account the number of rows per actual column value, or does it just use the average number of rows per value.
Suppose I ...
2
votes
3answers
5k views
Eliminating outliers by standard deviation in SQL Server
I am trying to eliminate outliers in SQL Server 2008 by standard deviation. I would like only records that contain a value in a specific column within +/- 1 standard deviation of that column's mean.
...
1
vote
5answers
317 views
Statistical analysis for performance measurement on usage of bigger datatype wherever they were not required at all
If i takes larger datatype where i know i should have taken datatype that was sufficient for possible values that i will insert into a table will affect any performance in sql server in terms of speed ...
2
votes
4answers
152 views
Generating order statistics grouped by order total
Hopefully I can explain this correctly. I have a table of line orders (each line order consists of quantity of item and the price, there are other fields but I left those out.)
table 'orderitems':
...
0
votes
1answer
341 views
SQL statistics system table
I have created a statistics in a table using SQL SERVER 2008 . In which system table this information is getting stored (Just like all the table info are stored in in sys.tables)...?
7
votes
2answers
6k views
How to Clear down Query Execution Statistics in SQL Server 2005/2008
Based on getting Query Execution Statistics using this extremely useful piece of SQL obtained from this post Most Executed Stored Procedure - Stack Overflow:
SELECT TOP 100
qt.TEXT AS 'SP Name',
...
0
votes
3answers
454 views
Are statistics automatically updated when a new index is created?
Is there any benefit to running an UPDATE Statistics after you create an index or is it done automatically for you?
5
votes
4answers
6k views
Weighted average in T-SQL (like Excel's SUMPRODUCT)
I am looking for a way to derive a weighted average from two rows of data with the same number of columns, where the average is as follows (borrowing Excel notation):
...
3
votes
3answers
6k views
How to find out SQL Server table's read/write statistics?
Is there a way to find a statistics on table read and write count on SQL Server 2005/2008?
I am specifically looking for DMVs/DMFs without using triggers or audits.
The goal here is to find out ...
5
votes
1answer
571 views
Calculating Moving Range in SQL Server (without arrays)
I have a requirement to calculate the Moving Range of a load of data (at least I think this is what it is called) in SQL Server. This would be easy if I could use arrays, but I understand this is not ...
0
votes
1answer
294 views
I cant see statistics information for my auto-generated stats - is this normal? (SQL2005)
I'm trying to diagnose a slow stored procedure (see this question) and I've noticed that for my auto-generated stats (the ones named things like _WA_Sys_0000000A_0D0FEE32) I cant view the detailed ...
1
vote
2answers
698 views
Where can i find the: 1) cache hits and 2) cache lookup stats in SQL Server
First of, the question is not: how to see SQL Server cache hit rate!
For that one i already know of a view that contains that precises statistic.
My question is in fact: where are the raw statistics ...
0
votes
2answers
642 views
Identifying accurate matches from SQL Server Full Text Search
I am using SQL Server 2008 Full Text Search, and joining to the FreeTextTable to determine ranking of results.
How do I determine whether the result set is giving an accurate match or not?
For ...
1
vote
1answer
265 views
Does column order matter when creating statistics for Microsoft SQL Server?
The Database Engine Tuning Advisor has recommended the creation of some statistics for several of our queries. Turns out that some of these are the same just the column order is different in the ...
2
votes
3answers
501 views
SQL Server 2005 Query Statistics
Where can I find some in-depth information on tuning statistics in SQL Server 2005?
I need to really delve in to what statistics are being used in a number of different queries, how they are ...
1
vote
4answers
545 views
How do I implement a real time *financial* statistics engine from SQL server data for dashboard display?
We currently use excel automation to calculate time series statistics and store the results in our SQL Server 2008 database for easy display/sorting/etc. later.
I'm currently redesigning the home ...
0
votes
2answers
1k views
Taking an average in SQL after throwing away outliers
I have a generic log table which I can attach to processes and their results. I get the average time using a process performance view:
WITH Events
AS (
SELECT ...
2
votes
4answers
1k views
Statistical calculations in SQL Server
Does anyone know of any packages or source code that does simple statistical analysis, e.g., confidence intervals or ANOVA, inside a SQL Server stored procedure?
3
votes
3answers
1k views
SQL commands to get performance statistics
Are there SQL commands that I could use to extract performance monitoring data from MS SQL 2005, such as:
transactions per second
page reads/writes
connections (@@CONNECTIONS gives the total, but ...
0
votes
3answers
64 views
Handling Many Statistic DB Columns With Order By Requirements
For my current project we want to present statistical data and rank it. For my case I'm talking about "Favouriting" of an artist, counting the times an artist's track has been played, displaying a ...
1
vote
2answers
586 views
Does sp_updatestats cause tables to be inaccessible in SQL Server 2005?
Does updating statistics cause tables to be inaccessible? In other words, can you run this procedure without downtime?
Specifically for SQL Server 2005
11
votes
2answers
2k views
SQL Server STATISTICS
So for this one project, we have a bunch of queries that are executed on a regular basis (every minute or so. I used the "Analyze Query in Database Engine " to check on them.
They are pretty simple:
...
24
votes
5answers
7k views
What does “Create Statistics” do in SQL Server 2005?
The Database Tuning Advisor is recommending that I create a bunch of statistics in my Database. I'm something of a SQL n00b, so this was the first time I'd ever come across such a creature. The ...
8
votes
4answers
2k views
What would a Database Diagram (ER Diagram/Table Layout) look like for measuring distribution of something?
If I was, for example, going to count "activities" across many computers and show a rollup of that activity, what would the database look like to store the data?
Simply this? Seems too simple. I'm ...
1
vote
3answers
333 views
What is the easiest way to get total number for lines of code (LOC) in SQL Server?
I need to provide statistics on how many lines of code (LOC) associated with a system. The application part is easy but I need to also include any code residing within the SQL Server database. This ...
3
votes
5answers
2k views
Is it OK to drop sql statistics?
We've been trying to alter a lot of columns from nullable to not nullable, which involves dropping all the associated objects, making the change, and recreating the associated objects.
We've been ...
1
vote
2answers
10k views
User access log to SQL Server
I need to get a log of user access to our SQL Server so I can track average and peak concurrency usage. Is there a hidden table or something I'm missing that has this information for me? To my ...