User KM - Stack Overflowmost recent 30 from stackoverflow.com2009-12-07T23:21:01Zhttp://stackoverflow.com/feeds/user/65223http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/917773/do-i-really-need-to-use-set-xactabort-on0Do I really need to use "SET XACT_ABORT ON"?KM2009-05-27T20:08:06Z2009-12-03T12:16:39Z
<p>if you are careful and use TRY-CATCH around everything, and rollback on errors do you really need to use:</p>
<pre><code>SET XACT_ABORT ON
</code></pre>
<p>In other words, is there any error that TRY-CATCH will miss that SET XACT_ABORT ON will handle?</p>
http://stackoverflow.com/questions/702745/sql-server-how-to-drop-identity-from-a-column3SQL Server how to drop identity from a columnKM2009-03-31T19:50:03Z2009-11-18T15:36:45Z
<p>Is there an easy way to remove an identity from a table in SQL Server 2005? </p>
<p>When I use Management Studio, it generates a script that creates a mirror table without the identity, copies the data, drops the table, then renames the mirror table, etc. This script has 5231 lines in it because this table/column have many FK relations. </p>
<p>I'd feel much more comfortable running a simple alter/drop. Any ideas?</p>
<p><strong>EDIT</strong><br />
I think I'm just going to go with the 5,231 line script from Enterprise Manager. However, I'm going to break it up into smaller parts which I can run and control better. This table "behaves" strange, if you try to delete 1 row (even one you just inserted, which is not in any other FK table), you get this error:</p>
<pre><code>delete MyTable where MyPrimaryKey=1234
Msg 8621, Level 17, State 2, Line 1
The query processor ran out of stack space during query optimization. Please simplify the query.
</code></pre>
<p>No doubt, all the FKs. We will halt all access to our application and run in single user mode when we make these schema and related application changes. However, we need this to run fast, and I need an idea of how long it will take. I guess that I'll just have to test, test, test.</p>
http://stackoverflow.com/questions/1625825/how-to-query-for-rows-along-with-their-xml-representation/1626260#16262601Answer by KM for How to query for rows along with their xml representation?KM2009-10-26T17:50:35Z2009-10-26T17:50:35Z<p>try something like this:</p>
<pre><code>DECLARE @YourTable table (PK1 int, c1 int, c2 varchar(5), c3 datetime)
INSERT INTO @YourTable VALUES (1,2,'abcde','1/1/2009')
INSERT INTO @YourTable VALUES (100,200,'zzz','12/31/2009 23:59:59')
--list all columns in xml format
SELECT
t2.PK1 --optional, can remove this column from the result set and just get the XML
,(SELECT
*
FROM @YourTable t1
WHERE t1.PK1= t2.PK1
FOR XML PATH('YourTable'), TYPE
) as Row
FROM @YourTable t2
</code></pre>
<p>OUTPUT:</p>
<pre><code>PK1 Row
----------- ------------------------------------------------------------------------------------------
1 <YourTable><PK1>1</PK1><c1>2</c1><c2>abcde</c2><c3>2009-01-01T00:00:00</c3></YourTable>
100 <YourTable><PK1>100</PK1><c1>200</c1><c2>zzz</c2><c3>2009-12-31T23:59:59</c3></YourTable>
(2 row(s) affected)
</code></pre>
http://stackoverflow.com/questions/1624185/sql-server-where-clauses/1624322#16243220Answer by KM for SQL Server Where ClausesKM2009-10-26T11:33:55Z2009-10-26T11:33:55Z<p>why hit the data twice with something like:</p>
<pre><code>--did data change?
if exists (select ... where pk=@pk and and and...)
begin
update ... where pk=@pk
end
</code></pre>
<p>just do something like:</p>
<pre><code>update ... where pk=@pk and and and...
</code></pre>
<p>you can check @@ROWCOUNT if you need to know if it actually changed and was UPDATEd</p>
http://stackoverflow.com/questions/1597055/how-to-count-rows-that-have-the-same-values-in-two-columns-sql/1597070#15970705Answer by KM for How to count rows that have the same values in two columns (SQL)?KM2009-10-20T20:22:39Z2009-10-20T20:22:39Z<p>TRY:</p>
<pre><code>SELECT
A, B , COUNT(*)
FROM YourTable
GROUP BY A, B
</code></pre>
http://stackoverflow.com/questions/1591325/concatenating-records-in-a-single-column-without-looping/1594824#15948243Answer by KM for Concatenating records in a single column without looping?KM2009-10-20T14:00:46Z2009-10-20T14:00:46Z<p>try this:</p>
<pre><code>DECLARE @YourTable table (Col1 int)
INSERT INTO @YourTable VALUES (1)
INSERT INTO @YourTable VALUES (2)
INSERT INTO @YourTable VALUES (30)
INSERT INTO @YourTable VALUES (400)
INSERT INTO @YourTable VALUES (12)
INSERT INTO @YourTable VALUES (46454)
SELECT
STUFF(
(
SELECT
', ' + cast(Col1 as varchar(30))
FROM @YourTable
WHERE Col1<=400
ORDER BY Col1
FOR XML PATH('')
), 1, 2, ''
)
</code></pre>
<p>OUTPUT:</p>
<pre><code>-------------------
1, 2, 12, 30, 400
(1 row(s) affected)
</code></pre>
http://stackoverflow.com/questions/1594511/how-to-search-with-multiple-criteria-from-a-database-with-sql/1594768#15947681Answer by KM for How to search with multiple criteria from a database with SQL?KM2009-10-20T13:51:36Z2009-10-20T13:51:36Z<p>here is a very comprehensive article on how to handle this topic:</p>
<p><a href="http://www.sommarskog.se/dyn-search-2005.html" rel="nofollow">Dynamic Search Conditions in T-SQL by Erland Sommarskog</a></p>
<p>it covers all the issues and methods of trying to write queries with multiple optional search conditions</p>
<p>here is the table of contents:</p>
<pre>
Introduction
The Case Study: Searching Orders
The Northgale Database
Dynamic SQL
Introduction
Using sp_executesql
Using the CLR
Using EXEC()
When Caching Is Not Really What You Want
Static SQL
Introduction
x = @x OR @x IS NULL
Using IF statements
Umachandar's Bag of Tricks
Using Temp Tables
x = @x AND @x IS NOT NULL
Handling Complex Conditions
Hybrid Solutions – Using both Static and Dynamic SQL
Using Views
Using Inline Table Functions
Conclusion
Feedback and Acknowledgements
Revision History</pre>
http://stackoverflow.com/questions/1590994/why-cant-i-access-my-cte-after-i-used-it-once/1591096#15910963Answer by KM for why can't I access my CTE after I used it once?KM2009-10-19T20:53:20Z2009-10-19T20:53:20Z<p>In your example code, the CTE only persists for the UPDATE. If you need it to last longer, consider populating a #tempTable or @tableVariable with it, and then UPDATE and DELETE from those.</p>
<p>You may also augment your UPDATE to use an <a href="http://technet.microsoft.com/en-us/library/ms177564.aspx" rel="nofollow">OUTPUT</a> clause, like the following, so you can capture the affected rows. And use them in the DELETE, like here:</p>
<pre><code>set nocount on
DECLARE @Table table (PK int, col1 varchar(5))
DECLARE @SavedPks table (PK int)
INSERT INTO @Table VALUES (1,'g')
INSERT INTO @Table VALUES (2,'g')
INSERT INTO @Table VALUES (3,'g')
INSERT INTO @Table VALUES (4,'g')
INSERT INTO @Table VALUES (5,'x')
INSERT INTO @Table VALUES (6,'x')
set nocount off
;WITH MYCTE
AS
(
SELECT PK, col1 FROM @Table
)
UPDATE MYCTE
SET col1='xyz'
OUTPUT INSERTED.PK
INTO @SavedPks
WHERE col1='g'
SELECT 'A',* FROM @Table
DELETE @Table
WHERE PK IN (SELECT PK from @SavedPks)
SELECT 'B',* FROM @Table
</code></pre>
<p>OUTPUT:</p>
<pre><code>(4 row(s) affected)
PK col1
---- ----------- -----
A 1 xyz
A 2 xyz
A 3 xyz
A 4 xyz
A 5 x
A 6 x
(6 row(s) affected)
(4 row(s) affected)
PK col1
---- ----------- -----
B 5 x
B 6 x
(2 row(s) affected)
</code></pre>
http://stackoverflow.com/questions/1590836/how-do-i-sort-a-varchar-column-in-sql-server-that-contains-words-and-numbers/1591009#15910091Answer by KM for How do I sort a VARCHAR column in SQL server that contains words and numbers?KM2009-10-19T20:38:55Z2009-10-19T20:38:55Z<p>poorly and inconsistently entered data is difficult to fix programmatically. However, you should fix this data, not in your SELECT so your ORDER BY works, but in the data, so you don't have to worry about this again.</p>
<p>You should consider creating separate columns for the "word" and the "number" portions of the data in question. You can then run a script that tries to put the data into the proper columns, and then any necessary manual followup. You'll have the change the application logic and possibly the front end to keep the data coming into the database valid though.</p>
<p>Anything short of this will just result in ineffective sorting of the data.</p>
http://stackoverflow.com/questions/1589283/how-do-i-run-sql-queries-on-different-databases-dynamically/1589449#15894492Answer by KM for How do I run SQL queries on different databases dynamically?KM2009-10-19T15:41:48Z2009-10-19T15:41:48Z<p>build a procedure to back up the current database, whatever it is. Install this procedure on all databases that you want to backup. </p>
<p>Write another procedure that will launch the backups. This will depend on things that you have not mentioned, like if you have a table containing the names of each database to backup or something like that. Basically all you need to do is loop over the database names and build a string like: </p>
<pre><code>SET @ProcessQueryString=
'EXEC '+DatabaseServer+'.'+DatabaseName+'.dbo.'+'BackupProcedureName param1, param2'
</code></pre>
<p>and then just:</p>
<pre><code>EXEC (@ProcessQueryString)
</code></pre>
<p>to run it remotely.</p>
http://stackoverflow.com/questions/1588042/how-to-set-default-null-value-in-to-a-date-field-in-sql-server-2000/1589355#15893550Answer by KM for How to set default null value in to a date field in sql server 2000?KM2009-10-19T15:26:06Z2009-10-19T15:26:06Z<p>Make sure you are really passing in NULL, I think you are passing in an empty string. If you pass in empty string, you get the <code>1900-01-01 00:00:00.000</code> value that you refer to. Null will be null and not change to a date.</p>
<p>try this test code:</p>
<pre><code>declare @x datetime
select 'is null', @x
set @x=''
select 'is empty string', @x
</code></pre>
<p>OUTPUT:</p>
<pre><code>------- -----------------------
is null NULL
(1 row(s) affected)
--------------- -----------------------
is empty string 1900-01-01 00:00:00.000
(1 row(s) affected)
</code></pre>
http://stackoverflow.com/questions/1578500/how-to-select-columns-as-rows/1579696#15796961Answer by KM for how to select columns as rows?KM2009-10-16T18:40:54Z2009-10-16T21:43:00Z<p>This should work for any table, but in my example I just create a test one. You need to set the table name within @YourTableName. Also, you need to set @YourTableWhere to limit the results to one row, otherwise the output looks strange with multiple rows mixed together.</p>
<p>try this:</p>
<pre><code>BEGIN TRY
CREATE TABLE YourTestTable
(RowID int primary key not null identity(1,1)
,col1 int null
,col2 varchar(30)
,col3 varchar(20)
,col4 money
,StatusValue char(1)
,xyz_123 int
)
INSERT INTO YourTestTable (col1,col2,col3,col4,StatusValue,xyz_123) VALUES (1234,'wow wee!','this is a long test!',1234.56,'A',98765)
INSERT INTO YourTestTable (col1,col2,col3,col4,StatusValue,xyz_123) VALUES (543,'oh no!','short test',0,'I',12)
END TRY BEGIN CATCH END CATCH
select * from YourTestTable
DECLARE @YourTableName varchar(1000)
DECLARE @YourTableWhere varchar(1000)
DECLARE @YourQuery varchar(max)
SET @YourTableName='YourTestTable'
set @YourTableWhere='y.RowID=1'
SELECT
@YourQuery = STUFF(
(SELECT
' UNION '
+ 'SELECT '''+COLUMN_NAME+''', CONVERT(varchar(max),'+COLUMN_NAME+') FROM '+@YourTableName+' y'+ISNULL(' WHERE '+@YourTableWhere,'')
FROM INFORMATION_SCHEMA.COLUMNS
WHERE table_name = @YourTableName
FOR XML PATH('')
), 1, 7, ''
)
PRINT @YourQuery
EXEC (@YourQuery)
</code></pre>
<p>OUTPUT:</p>
<pre><code>RowID col1 col2 col3 col4 StatusValue xyz_123
----------- ----------- ------------------------------ -------------------- --------------------- ----------- -----------
1 1234 wow wee! this is a long test! 1234.56 A 98765
2 543 oh no! short test 0.00 I 12
SELECT 'RowID', CONVERT(varchar(max),RowID) FROM YourTestTable y WHERE y.RowID=1 UNION SELECT 'col1', CONVERT(varchar(max),col1) FROM YourTestTable y WHERE y.RowID=1 UNION SELECT 'col2', CONVERT(varchar(max),col2) FROM YourTestTable y WHERE y.RowID=1 UNION SELECT 'col3', CONVERT(varchar(max),col3) FROM YourTestTable y WHERE y.RowID=1 UNION SELECT 'col4', CONVERT(varchar(max),col4) FROM YourTestTable y WHERE y.RowID=1 UNION SELECT 'StatusValue', CONVERT(varchar(max),StatusValue) FROM YourTestTable y WHERE y.RowID=1 UNION SELECT 'xyz_123', CONVERT(varchar(max),xyz_123) FROM YourTestTable y WHERE y.RowID=1
----------- ------------------------
col1 1234
col2 wow wee!
col3 this is a long test!
col4 1234.56
RowID 1
StatusValue A
xyz_123 98765
</code></pre>
<p><strong>EDIT</strong></p>
<p>For SQL Server 2000 compatibility, you should be able to replace varchar(max) with varchar(8000) and use this in place of the <code>SELECT @YourQuery</code> query from the code above:</p>
<pre><code>SELECT
@YourQuery=ISNULL(@YourQuery+' UNION ','')
+ 'SELECT '''+COLUMN_NAME+''', CONVERT(varchar(max),'+COLUMN_NAME+') FROM '+@YourTableName+' y'+ISNULL(' WHERE '+@YourTableWhere,'')
FROM INFORMATION_SCHEMA.COLUMNS
WHERE table_name = @YourTableName
</code></pre>
http://stackoverflow.com/questions/1578198/can-i-loop-through-a-table-variable-in-t-sql/1578248#15782481Answer by KM for Can I loop through a table variable in T-SQL?KM2009-10-16T14:03:07Z2009-10-16T14:03:07Z<p>Add an identity to your table variable, and do an easy loop from 1 to the @@ROWCOUNT of the INSERT-SELECT.</p>
<p>Try this:</p>
<pre><code>DECLARE @RowsToProcess int
DECLARE @CurrentRow int
DECLARE @SelectCol1 int
DECLARE @table1 TABLE (RowID int not null primary key identity(1,1), col1 int )
INSERT into @table1 (col1) SELECT col1 FROM table2
SET @RowsToProcess=@@ROWCOUNT
SET @CurrentRow=0
WHILE @CurrentRow<@RowsToProcess
BEGIN
SET @CurrentRow=@CurrentRow+1
SELECT
@SelectCol1=col1
FROM @table1
WHERE RowID=@CurrentRow
--do your thing here--
END
</code></pre>
http://stackoverflow.com/questions/1573108/would-this-be-an-appropriate-situations-for-a-cursor/1573248#15732482Answer by KM for Would this be an appropriate situations for a cursor?KM2009-10-15T15:48:33Z2009-10-15T21:39:12Z<p><a href="http://stackoverflow.com/questions/1573108/would-this-be-an-appropriate-situations-for-a-cursor/1573183#1573183">@cmsjr beat me to it with his answer</a> which is just bout the same. I do build the string differently, and have a complete working example.</p>
<p>try this:</p>
<pre><code>CREATE TABLE YourTable (SoNo int, SoItem int, SoRels char(3), LotSerial char(4))
go
INSERT INTO YourTable VALUES (123456,1,'001','ABCD')
INSERT INTO YourTable VALUES (123456,1,'001','AMOH')
INSERT INTO YourTable VALUES (123456,1,'001','POWK')
INSERT INTO YourTable VALUES (123456,1,'001','IUIL')
INSERT INTO YourTable VALUES (123456,1,'002','ABCE')
go
CREATE FUNCTION LotSerial_to_CVS(@SoNo int, @SoItem int, @SoRels char(3))
RETURNS varchar(2000) AS
BEGIN
DECLARE @cvs varchar(2000)
SELECT @cvs=ISNULL(@cvs+', ','')+LotSerial
FROM YourTable
WHERE SoNo=@SoNo AND SoItem=@SoItem AND SoRels=@SoRels
RETURN @cvs
END
go
SELECT
SoNo, SoItem, SoRels, dbo.LotSerial_to_CVS(SoNo, SoItem, SoRels)
FROM YourTable
GROUP BY SoNo, SoItem, SoRels
</code></pre>
<p>OUTPUT:</p>
<pre><code>SoNo SoItem SoRels
----------- ----------- ------ -----------------------
123456 1 001 ABCD, AMOH, POWK, IUIL
123456 1 002 ABCE
(2 row(s) affected)
</code></pre>
http://stackoverflow.com/questions/1574407/how-to-concatenate-n-columns-into-one/1574519#15745193Answer by KM for how to concatenate n columns into one?KM2009-10-15T19:27:47Z2009-10-15T20:53:13Z<p>try:</p>
<pre><code>;with XmlValues as
(
select t2.id, (
select *
from mytable t1
where t1.id= t2.id
for xml path(''), TYPE) as row
from mytable t2
)
select x.row.value('.', 'VARCHAR(8000)') as readable
FROM XmlValues AS x
</code></pre>
<p><strong>EDIT</strong> working sample:</p>
<pre><code>DECLARE @YourTable table (c1 int, c2 int, c3 varchar(5), c4 datetime)
INSERT INTO @YourTable VALUES (1,2,'abcde','1/1/2009')
INSERT INTO @YourTable VALUES (100,200,'zzz','12/31/2009 23:59:59')
select t2.c1, (
select *
from @YourTable t1
where t1.c1= t2.c1
for xml path(''), TYPE) as row
from @YourTable t2
;with XmlValues as
(
select t2.c1, (
select *
from @YourTable t1
where t1.c1= t2.c1
for xml path(''), TYPE) as row
from @YourTable t2
)
select x.c1,x.row.value('.', 'VARCHAR(8000)') as readable
FROM XmlValues AS x
</code></pre>
<p>OUTPUT:</p>
<pre><code>c1 row
----------- --------------------------------------------------------------------
1 <c1>1</c1><c2>2</c2><c3>abcde</c3><c4>2009-01-01T00:00:00</c4>
100 <c1>100</c1><c2>200</c2><c3>zzz</c3><c4>2009-12-31T23:59:59</c4>
(2 row(s) affected)
c1 readable
----------- ----------------------------------
1 12abcde2009-01-01T00:00:00
100 100200zzz2009-12-31T23:59:59
(2 row(s) affected)
</code></pre>
<p><strong>EDIT</strong> loop free way to parse table column names from meta data tables, with the ability to format each datatype as desired and supports NULLs:</p>
<pre><code>BEGIN TRY
CREATE TABLE YourTable (c1 int, c2 int, c3 varchar(5), c4 datetime)
INSERT INTO YourTable VALUES (1,2,'abcde','1/1/2009')
INSERT INTO YourTable VALUES (100,200,'zzz','12/31/2009 23:59:59')
end try begin catch end catch
DECLARE @YourTableName varchar(1000)
DECLARE @YourColumns varchar(max)
DECLARE @YourQuery varchar(max)
SET @YourTableName='YourTable'
SELECT
@YourColumns=STUFF(
(SELECT
'+ '
--' ' --any constant string to appear between columns
+ CASE DATA_TYPE
WHEN 'datetime' THEN 'COALESCE(CONVERT(char(23),'+CONVERT(varchar(max),COLUMN_NAME)+',121),''NULL'')'
--more datatypes here
ELSE 'COALESCE(CONVERT(varchar(max),' + CONVERT(varchar(max),COLUMN_NAME)+'),''NULL'')'
END
FROM INFORMATION_SCHEMA.COLUMNS
WHERE table_name = @YourTableName
FOR XML PATH('')
), 1, 2, ''
)
SET @YourQuery = 'SELECT '+@YourColumns+' FROM '+@YourTableName
PRINT @YourQuery
SELECT * FROM YourTable
EXEC (@YourQuery)
</code></pre>
<p>OUTPUT:</p>
<pre><code>SELECT COALESCE(CONVERT(varchar(max),c1),'NULL')+ COALESCE(CONVERT(varchar(max),c2),'NULL')+ COALESCE(CONVERT(varchar(max),c3),'NULL')+ COALESCE(CONVERT(char(23),c4,121),'NULL') FROM YourTable
c1 c2 c3 c4
----------- ----------- ----- -----------------------
1 2 abcde 2009-01-01 00:00:00.000
100 200 zzz 2009-12-31 23:59:59.000
(2 row(s) affected)
------------------------------------------
12abcde2009-01-01 00:00:00.000
100200zzz2009-12-31 23:59:59.000
(2 row(s) affected)
</code></pre>
http://stackoverflow.com/questions/1573825/summarize-data-for-report-using-t-sql-case-statement/1573867#15738672Answer by KM for Summarize Data for Report using T-SQL Case StatementKM2009-10-15T17:24:29Z2009-10-15T17:30:33Z<p>you can't have "age" in the select list if you group by AGEGRP</p>
<p>try:</p>
<pre><code>DECLARE @YourTable table (age int, account int)
insert into @YourTable values (1,40)
insert into @YourTable values (2,40)
insert into @YourTable values (3,40)
insert into @YourTable values (4,40)
insert into @YourTable values (5,40)
insert into @YourTable values (6,40)
insert into @YourTable values (7,40)
insert into @YourTable values (8,40)
SELECT
COUNT(ACCOUNT)AS TOTALCASES, AGEGRP
FROM (SELECT
AGE,ACCOUNT, CASE
WHEN AGE <=5 THEN 'AGE 0 TO 5'
WHEN AGE >=6 THEN 'AGE 6 AND OLDER'
END AS AGEGRP
FROM @YourTable
)dt
GROUP BY AGEGRP
</code></pre>
<p>OUTPUT:</p>
<pre><code>TOTALCASES AGEGRP
----------- ---------------
5 AGE 0 TO 5
3 AGE 6 AND OLDER
(2 row(s) affected)
</code></pre>
http://stackoverflow.com/questions/1572110/how-to-calculate-age-in-years-based-on-date-of-birth-and-getdate/1572411#15724111Answer by KM for How to calculate age (in years) based on Date of Birth and getDate()KM2009-10-15T13:34:53Z2009-10-15T14:17:49Z<p>try this:</p>
<pre><code>DECLARE @dob datetime
SET @dob='1992-01-09 00:00:00'
SELECT DATEDIFF(hour,@dob,GETDATE())/8766.0 AS AgeYearsDecimal
,CONVERT(int,ROUND(DATEDIFF(hour,@dob,GETDATE())/8766.0,0)) AS AgeYearsIntRound
,DATEDIFF(hour,@dob,GETDATE())/8766 AS AgeYearsIntTrunc
</code></pre>
<p>OUTPUT:</p>
<pre><code>AgeYearsDecimal AgeYearsIntRound AgeYearsIntTrunc
--------------------------------------- ---------------- ----------------
17.767054 18 17
(1 row(s) affected)
</code></pre>
http://stackoverflow.com/questions/1572306/sql-server-error-cannot-sort-a-row-of-size-x-which-is-greater-than-the-allowabl/1572395#15723950Answer by KM for SQL Server Error: Cannot sort a row of size x, which is greater than the allowable maximum of 8094. But I'm not sorting.KM2009-10-15T13:32:26Z2009-10-15T13:32:26Z<p>You may be able to split up your query with a CTE, derived tables, and or #temp table to get around your problems, but I don't know enough about your tables, returned columns, or indexes to make any specific recommendations.</p>
<p>Without more info it is impossible to solve this for you. What are the table definitions? are you JOINing columns of type INTs or varchar(1000)? do you have covering indexes? are you selecting columns from each table, or only some?</p>
<p>possibly use covering indexes to get all the primary keys in a CTE, derived tables, and or #temp table, and then join back to the regular tables to get the columns you are interested in.</p>
http://stackoverflow.com/questions/1568852/sqldatasource-timeout-ok-in-management-studio/1568909#15689091Answer by KM for SqlDataSource Timeout. OK in Management StudioKM2009-10-14T20:48:31Z2009-10-14T20:48:31Z<p>could be locking/blocking, if people are doing work in the database your select may wait until their transaction is complete. The timeout would be hit or miss, depending on the other transactions in the database.</p>
<p>in management studio, run <code>SET SHOWPLAN_ALL ON</code>, and then run your query. Look for "SCAN" in the output. If you have a table or index scan you are more likely to be a victim of locking/block, since you must process the entire index/table and anyone locking a row in there will force you to wait.</p>
<p>when you run the application, and screen is not refreshing fast run this in management studio:</p>
<pre><code>EXEC sp_lock
</code></pre>
<p>it will give you some basic info an any locking currently going on.</p>
http://stackoverflow.com/questions/1568580/what-are-the-general-guidelines-and-best-practices-to-keep-in-mind-while-designin/1568649#15686493Answer by KM for What are the general guidelines and best practices to keep in mind while designing database for an application ?KM2009-10-14T20:04:25Z2009-10-14T20:04:25Z<p>DEPENDS </p>
<p>this question is like saying "what is the best car to buy", it really depends on many factors including amount of data, number of concurrent users, what you are trying to do, etc. FYI, normalization is good for some database uses, but bad for others (data warehouse).</p>
<p>Give us a better idea of how you intend to use the data, and you'll get some better recommendations.</p>
http://stackoverflow.com/questions/1568262/cascade-a-value-in-a-table/1568300#15683003Answer by KM for Cascade a value in a tableKM2009-10-14T18:58:01Z2009-10-14T18:58:01Z<p>You could use a <a href="http://dev.mysql.com/doc/refman/5.0/en/triggers.html" rel="nofollow">trigger</a> on the parent table that updates all children as necessary. Otherwise you'll have to handle it at the same level of your application where you update the parent row.</p>
http://stackoverflow.com/questions/1568073/updating-a-field-based-on-values-in-two-other-fields/1568146#15681461Answer by KM for Updating a Field based on Values in Two Other FieldsKM2009-10-14T18:30:42Z2009-10-14T18:30:42Z<p>Normalize your data, create a new table, with a composite primary key on Race+Ethnicity:</p>
<p>YourNewTable</p>
<pre><code>Race CHAR(1) PK
Ethnicity CHAR(1) PK
ETH VARCHAR(50)
</code></pre>
<p>make a foreign key to your other table, and join to show ETH:</p>
<pre><code>SELECT
o.Race
,o.ETHNICITY
,n.ETH
FROM YourTable o
INNER JOIN YourNewTable n ON o.Race=n.Race AND o.Ethnicity=n.Ethnicity
</code></pre>
http://stackoverflow.com/questions/1566832/database-maintenance-with-ssis-or-t-sql/1567071#15670710Answer by KM for Database maintenance with SSIS or T-SQL?KM2009-10-14T15:25:50Z2009-10-14T15:25:50Z<p>Use what you're comfortable with, a rebuild is a rebuild. Just standardize on one and keep everything in one or the other (not both) or you'll duplicate/miss something.</p>
http://stackoverflow.com/questions/1566428/what-are-the-main-skills-to-be-a-performance-consultant/1566480#15664801Answer by KM for What are the main Skills to be a Performance Consultant?KM2009-10-14T14:08:57Z2009-10-14T14:08:57Z<p>Being able to speed up Java code. You'll most likely be called in to look at slow code, and you'll need to find and fix the slow portions. Can't speed it up, and you'll have angry clients, speed it up and everyone is happy. This could put you under some pressure to perform, if you like that kind of thing.</p>
<p>You could be called in to advise on designs. As a result, you'll need to know a lot of best practices, and have good design skills.</p>
http://stackoverflow.com/questions/1564092/change-prmmax-from-asp-net-into-sql-server-query/1566340#15663401Answer by KM for Change @prmMax from asp.net into SQL-server Query?KM2009-10-14T13:47:09Z2009-10-14T13:47:09Z<p>I'll answer, but only because of the OP's comment that they still can't get this to work, even after <a href="http://stackoverflow.com/questions/1564092/change-prmmax-from-asp-net-into-sql-server-query/1564691#1564691">the correct answer from marc_s</a>, where the need to declare @prmMax and initialize @prmMax is pointed out. To make the query run add the <code>DECLARE</code> and <code>SET</code> before your query, like here:</p>
<pre><code>DECLARE @prmMax int
SET @prmMax=28
--your query here--
select Month(reg_Date) as RegMonth, datediff(day, reg_date, reg_activationdate) as RegDiff,
count(*) as RegCount from dailyregistration
where datediff(day, reg_date, reg_activationdate) <= @prmMax
group by Month(reg_Date), datediff(day, reg_date, reg_activationdate)
order by Month(reg_Date), datediff(day, reg_date, reg_activationdate)
</code></pre>
http://stackoverflow.com/questions/1565718/can-i-have-composite-constraints/1565985#15659852Answer by KM for Can I have composite constraints?KM2009-10-14T12:39:00Z2009-10-14T12:39:00Z<p>to go with what <a href="http://stackoverflow.com/questions/1565718/can-i-have-composite-constraints/1565748#1565748">Guffa said in his answer</a>, create a unique index on the two fields:</p>
<pre><code>CREATE UNIQUE NONCLUSTERED INDEX IX_Table_files_name_path ON Table_files
(
file_name,file_path
)
GO
</code></pre>
<p>this prevents any combination of <code>file_name+file_path</code> from being duplicated, but allows for repeated values within <code>file_name</code> and <code>file_path</code> values, just not the same combination.</p>
http://stackoverflow.com/questions/1565869/should-i-use-a-flat-file-or-database-for-storing-quotes-for-a-random-quotations-a/1565925#15659253Answer by KM for Should I use a flat file or database for storing quotes for a random quotations app on Android?KM2009-10-14T12:24:15Z2009-10-14T12:24:15Z<p>I'd go with a very simple database, single table:</p>
<pre><code>Quotes
ID sequential integer PK
Quote text/string
</code></pre>
<p>with a possible "Viewed" bit field, that you can update to prevent duplicates. Generate a random value and select that row from the table, mark it viewed and be done with it.</p>
<p>The problem with a flat file is quickly finding and reading a quote from the middle of the file. This is what a database does well. Also with a "flat" file you'll have a lot of wasted space at the end of file lines.</p>
<p>Also, if you can load new quotes, why populate 10^6 at any one time? just load enough to keep the app going and march through them in a sequential order, deleting viewed ones and loading new ones. This approach would require you to keep track of the last loaded quote, so you are always loading new ones.</p>
http://stackoverflow.com/questions/1562553/how-do-i-determine-if-i-have-execute-permissions-on-a-db-programatically/1562595#15625951Answer by KM for How do I determine if I have execute permissions on a DB programatically?KM2009-10-13T20:01:17Z2009-10-13T20:35:49Z<p>you could run a query like this:</p>
<pre><code>SELECT
o.NAME,COALESCE(p.state_desc,'?permission_command?')+' '+COALESCE(p.permission_name,'?permission_name?')+' ON ['+SCHEMA_NAME(o.schema_id)+'].['+COALESCE(o.Name,'?object_name?')+'] TO ['+COALESCE(dp.Name,'?principal_name?')+']' COLLATE SQL_Latin1_General_CP1_CI_AS AS GrantCommand
FROM sys.all_objects o
INNER JOIN sys.database_permissions p ON o.OBJECT_ID=p.major_id
LEFT OUTER JOIN sys.database_principals dp ON p.grantee_principal_id = dp.principal_id
where p.state_desc='GRANT' AND p.permission_name='EXECUTE'
AND o.NAME='YourProcedureName'
AND dp.Name='YourSecurityName'
</code></pre>
<p>...and remove the fancy formatting of the grant command, it is there only for reference</p>
<p>these are nice too...</p>
<pre><code>SELECT * FROM fn_my_permissions('YourTable', 'OBJECT')
SELECT * FROM fn_my_permissions('YourProcedure', 'OBJECT')
SELECT * FROM fn_my_permissions (NULL, 'DATABASE')
SELECT * FROM fn_my_permissions(NULL, 'SERVER')
</code></pre>
<p>To see what permissions someone else has you can do this:</p>
<pre><code>EXECUTE AS user = 'loginToTest'
GO
PRINT 'SELECT permissions on tables:'
SELECT
HAS_PERMS_BY_NAME( QUOTENAME(SCHEMA_NAME(schema_id))+'.' + QUOTENAME(name)
,'OBJECT','SELECT'
) AS have_select
, *
FROM sys.tables;
PRINT 'EXECUTE permissions on stored procedures:'
SELECT
HAS_PERMS_BY_NAME( QUOTENAME(SCHEMA_NAME(schema_id)) + '.' + QUOTENAME(name)
,'OBJECT', 'EXECUTE') AS have_execute
, *
FROM sys.procedures;
GO
REVERT;
GO
</code></pre>
http://stackoverflow.com/questions/1561190/sql-server-templates-how-do-i-escape-the-less-than-character/1562444#15624442Answer by KM for SQL Server Templates - How Do I Escape The Less Than Character?KM2009-10-13T19:32:41Z2009-10-13T19:44:57Z<p>when I Specify Values for Template Parameters, this runs fine for me:</p>
<pre><code>select * from <xyz, varchar,YourTable> WHERE ID<=1000 AND ID>=20000
</code></pre>
<p>perhaps you do not have every parameter's "<" and ">" paired properly</p>
<p><strong>EDIT</strong> I see the problem now:</p>
<pre><code>SELECT * FROM <xyz, varchar,YourTable> WHERE ID<=1000 AND ID>=20000 AND <xyz2,varchar,YourColumn> IS NOT NULL
</code></pre>
<p>results in:</p>
<pre><code>SELECT * FROM YourTable WHERE IDYourColumn IS NOT NULL
</code></pre>
<p>try making the "<" character into a parameter, like this:</p>
<pre><code>SELECT * FROM <xyz, varchar,YourTable> WHERE ID<lessthan,char,<>=1000
AND ID>=20000 AND <<xyz2,varchar,YourColumn> IS NOT NULL
</code></pre>
<p>it results in:</p>
<pre><code>SELECT * FROM YourTable WHERE ID<=1000
AND ID>=20000 AND YourColumn IS NOT NULL
</code></pre>
<p>OR split the lines, line breaks seem to make a difference:</p>
<pre><code>SELECT * FROM <xyz, varchar,YourTable> WHERE ID<=1000 AND ID>=20000
AND <xyz2,varchar,YourColumn> IS NOT NULL
</code></pre>
<p>results in:</p>
<pre><code>SELECT * FROM YourTable WHERE ID<=1000 AND ID>=20000
AND YourColumn IS NOT NULL
</code></pre>
http://stackoverflow.com/questions/1562175/best-practice-for-relationships-shared-among-multiple-tables/1562217#15622170Answer by KM for Best Practice for relationships shared among multiple tablesKM2009-10-13T18:51:05Z2009-10-13T18:51:05Z<p>it really depends on how you query your data, but how about something like this, assumes there are multiple notes per person/dog:</p>
<p>PeopleTable</p>
<pre><code>PeopleID
NoteID
.....
</code></pre>
<p>DogTable</p>
<pre><code>DogID
NoteID
...
</code></pre>
<p>NoteTable</p>
<pre><code>NoteID
</code></pre>
<p>NoteDetailTable</p>
<pre><code>NoteDetailID
NoteID
NoteText
...
</code></pre>
http://stackoverflow.com/questions/1845464/why-this-behaviour-with-int-in-sql-server-2005/1845510#1845510Comment by KM on why this behaviour with int in SQL Server 2005KM2009-12-04T16:13:01Z2009-12-04T16:13:01Zdo not assign a variable the value within the IF EXISTS(... )http://stackoverflow.com/questions/1845464/why-this-behaviour-with-int-in-sql-server-2005/1845510#1845510Comment by KM on why this behaviour with int in SQL Server 2005KM2009-12-04T16:12:30Z2009-12-04T16:12:30Zuse <i>_IF EXISTS(SELECT Tracking_Id FROM DOCUMENT_TRACKING WHERE Secondary_Document_Id = @Secondary_Document_Id AND primary_Document_Id = @Primary_Document_Id) _</i>http://stackoverflow.com/questions/917773/do-i-really-need-to-use-set-xactabort-on/1839554#1839554Comment by KM on Do I really need to use "SET XACT_ABORT ON"?KM2009-12-03T14:26:02Z2009-12-03T14:26:02Zask this as a new question, not as an answer to an existing question.http://stackoverflow.com/questions/1828782/strategy-for-avoiding-a-common-sql-development-error-misleading-result-on-join-bComment by KM on Strategy for avoiding a common sql development error (misleading result on join bug)KM2009-12-01T20:49:01Z2009-12-01T20:49:01Zname your columns better, if all your identities are "id" then you deserve this problem. Use descriptive and consistent column names: PatientID, WarehouseID, ItemID, etc. Also, create some nice ER diagrams.http://stackoverflow.com/questions/682654/sql-server-ce-3-5-identity-insert/682742#682742Comment by KM on Sql Server Ce 3.5 Identity insertKM2009-11-23T22:07:16Z2009-11-23T22:07:16Z@Brian Wilkins, then do the same but create a view and not a procedure, you'll get the same errorhttp://stackoverflow.com/questions/45651/sql-how-to-get-the-id-of-values-i-just-inserted/45667#45667Comment by KM on SQL: How to get the id of values I just INSERTed?KM2009-11-12T16:06:33Z2009-11-12T16:06:33Zthere are known bugs with SCOPE_IDENTITY() in sql server 2005, not sure about 2008, the OUTPUT clause can return a set of IDs if necessaryhttp://stackoverflow.com/questions/1681162/sql-performance-using-a-coalesce-functionComment by KM on SQL Performance using a COALESCE FunctionKM2009-11-05T15:44:23Z2009-11-05T15:44:23Zouch! <i>LIKE '%CashFLow%'</i> this will hurt the query. move it from the HAVING to the WHERE, it may help, since you eliminate the rows you don't want before you try to group them.http://stackoverflow.com/questions/1663792/give-me-an-assignment-in-c/1663877#1663877Comment by KM on Give me an assignment in CKM2009-11-04T18:32:36Z2009-11-04T18:32:36ZYou are standing in an open field west of a white house, with a boarded front door. There is a small mailbox here. <a href="http://en.wikipedia.org/wiki/Zork_I" rel="nofollow">en.wikipedia.org/wiki/Zork_I</a>http://stackoverflow.com/questions/1650721/server-side-db-programming-why/1650748#1650748Comment by KM on server side db programming: why?KM2009-10-30T16:18:58Z2009-10-30T16:18:58Z+1, in my book, triggers are a band-aids. design and develop forward looking database tables and procedures, and then only use triggers as a last resort when you have to.http://stackoverflow.com/questions/1643365/why-no-love-for-sqlComment by KM on Why no love for SQL?KM2009-10-30T13:28:21Z2009-10-30T13:28:21Zall the answers should be wiki too. it is just insane that questions and answers like these get so many up votes. I thought this was a technical forum? you can solve someone's problem by providing some difficult to write code and get one or two up votes, yet answer a question like this and get loads of up votes. that's really lame if you ask me.http://stackoverflow.com/questions/1643365/why-no-love-for-sqlComment by KM on Why no love for SQL?KM2009-10-29T15:30:42Z2009-10-29T15:30:42Zshould be a wikihttp://stackoverflow.com/questions/1643365/why-no-love-for-sql/1643394#1643394Comment by KM on Why no love for SQL?KM2009-10-29T15:29:41Z2009-10-29T15:29:41ZJoachim Sauer said <i>SQL is not a terrible language, it just doesn't play too well with others</i> To me, it does sounds like someone said <i>it's SQLs fault</i>http://stackoverflow.com/questions/1643365/why-no-love-for-sql/1643696#1643696Comment by KM on Why no love for SQL?KM2009-10-29T13:51:26Z2009-10-29T13:51:26Zdealing with instances of objects in memory is quite different than the data that is physically stored in a database. there is more pain fixing poor designs, and possibly massive variations in performance based on "little things"http://stackoverflow.com/questions/1643365/why-no-love-for-sql/1643394#1643394Comment by KM on Why no love for SQL?KM2009-10-29T13:44:08Z2009-10-29T13:44:08Zwhy is it SQL's fault that OO languages don't map well to it? When you use a service, conform to its interface or don't use it.http://stackoverflow.com/questions/1639070/tsql-using-a-wildcard-in-a-where-clause-with-dynamic-sql/1639160#1639160Comment by KM on TSQL using a wildcard in a where clause with dynamic sqlKM2009-10-28T18:49:33Z2009-10-28T18:49:33Zyou don't need to loop to split a string into rows, see this:<a href="http://stackoverflow.com/questions/1456192/comparing-a-column-to-a-list-of-values-in-t-sql/1456404#1456404" rel="nofollow" title="comparing a column to a list of values in t sql">stackoverflow.com/questions/1456192/…</a>