User kristof - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T00:18:55Zhttp://stackoverflow.com/feeds/user/3241http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/464642/how-to-expand-rows-from-count-in-tsql-only/465009#4650093Answer by kristof for How to expand rows from count in tsql onlykristof2009-01-21T12:05:14Z2009-11-27T10:23:01Z<p>If you want CTE here is an example:</p>
<p>Initial insert:</p>
<pre><code>insert into rangeTable (StartValue, RangeValue)
select 40,100
union all select 150,10
go
</code></pre>
<p>the query:</p>
<pre><code>with r_CTE (startVal, rangeVal, generatedVal)
as
(
select r.startValue, r.rangeValue, r.startValue
from rangeTable r
union all
select r.startValue, r.rangeValue, generatedVal+1
from rangeTable r
inner join r_CTE rc
on r.startValue = rc.startVal
and r.rangeValue = rc.rangeVal
and r.startValue + r.rangeValue > rc.generatedVal + 1
)
select * from r_CTE
order by startVal, rangeVal, generatedVal
</code></pre>
<p>Just be aware that the default maximum number of recursions is 100. You can change it to the maximum of 32767 by calling </p>
<pre><code>option (maxrecursion 32767)
</code></pre>
<p>or to no limit </p>
<pre><code>option (maxrecursion 0)
</code></pre>
<p>See <a href="http://msdn.microsoft.com/en-us/library/ms175972.aspx" rel="nofollow">BOL</a> for details</p>
http://stackoverflow.com/questions/1803357/getting-debug-output-in-sql-server-managment-studio/1803380#18033800Answer by kristof for Getting debug output in SQL Server Managment Studio kristof2009-11-26T12:21:17Z2009-11-26T12:37:08Z<p>You can simply use <a href="http://msdn.microsoft.com/en-us/library/ms176047.aspx" rel="nofollow">PRINT</a> in the pleces that you suspect can cause problems</p>
<p>e.g.</p>
<pre><code>print 'Step 1'
insert into tableA -- some code here
...
print 'Step 2'
etc
</code></pre>
<p>You can also wrap your code into block of <a href="http://msdn.microsoft.com/en-us/library/ms175976.aspx" rel="nofollow">TRY CATCH</a> statements and throw custom errors or print error messages if something goes wrong </p>
http://stackoverflow.com/questions/1803184/javascript-know-if-a-link-has-already-been-opened/1803330#18033300Answer by kristof for javascript - know if a link has already been opened.kristof2009-11-26T12:10:51Z2009-11-26T12:10:51Z<p>Unfortunately it is possible to see what links were visited. I am saying unfortunately as it is considered a privacy violation. A while ago I came across this blog post <a href="http://www.merchantos.com/makebeta/tools/spyjax/" rel="nofollow">Spyjax – Your browser history is not private!</a> which describes this.</p>
http://stackoverflow.com/questions/1581246/how-can-my-server-securely-authenticate-iphone-in-app-purchase/1797603#17976030Answer by kristof for How can my server securely authenticate iPhone in-app purchase?kristof2009-11-25T15:15:21Z2009-11-25T15:15:21Z<p>I do not think that can bind the receipt to the device. </p>
<p>My understanding is that you are allowed to install an application on multiple devices without extra cost. Binding it to the device would mean that if you for example upgrade/change your phone you would need to purchase all the apps again.</p>
http://stackoverflow.com/questions/1729016/how-to-best-implement-a-11-relationship-in-a-rdbms/1730287#17302870Answer by kristof for How to best implement a 1:1 relationship in a RDBMS?kristof2009-11-13T16:24:15Z2009-11-13T16:31:43Z<p>I would use the solution proposed by <a href="#1729113" rel="nofollow">Darryl</a>:</p>
<pre><code>TableA
AId
AInfo
TableB
BId
BInfo
TableA2B
AId
BId
</code></pre>
<p>and then just add unique constrain on AId in tableA2B and BId on tableA2B</p>
<pre><code>alter TableA2B add constraint ucAId unique(AId)
alter TableA2B add constraint ucBId unique(BId)
</code></pre>
<p>I think that would solve your problem</p>
<p>The tableA entries that are not linked to any tableB entries would simply not be present in the TableA2B similarly tableB entries not linked to tableA.</p>
<p>The constrains would enforce maximum one link from tableA to tableB or tableB to tableA</p>
http://stackoverflow.com/questions/1702080/round-to-nearest-5-in-sql-server/1702155#17021551Answer by kristof for Round to nearest 5 in SQL Serverkristof2009-11-09T16:32:11Z2009-11-13T10:46:28Z<pre><code>select round(FineAmount*2,-1)/2 from tickets
</code></pre>
<p>or to put <a href="#1702103" rel="nofollow">nicholaides</a> suggestion in sql</p>
<pre><code>select round(FineAmount/5,0)*5 from tickets
</code></pre>
<p>The example assumes that FineAmount is of type money.
The second approach is probably better as the first one works with the limit of maximum_value_of_money_type/2</p>
<p>More on <a href="http://msdn.microsoft.com/en-us/library/ms175003.aspx" rel="nofollow">ROUND</a></p>
http://stackoverflow.com/questions/1723523/database-change-management-using-hand-generated-scripts/1723715#17237150Answer by kristof for Database Change Management using hand generated scriptskristof2009-11-12T16:56:07Z2009-11-12T16:56:07Z<p>I you want to write all the scripts yourself you can take advantage of the <a href="http://msdn.microsoft.com/en-us/library/ms162843.aspx" rel="nofollow">SQL Server 2005 TableDiff Utility</a> that will give you a lot of flexibility. Some usage examples can be find <a href="http://www.databasejournal.com/features/mssql/article.php/3594926/SQL-Server-2005-TableDiff-Utility.htm" rel="nofollow">here</a></p>
http://stackoverflow.com/questions/1700619/select-value-from-sqlserver-problem/1700674#17006742Answer by kristof for select value from sqlserver problem kristof2009-11-09T12:22:41Z2009-11-09T14:41:04Z<p>the problem is here:</p>
<pre><code>java.sql.ResultSet rslt = stmt.executeQuery(" SELECT * FROM student where rno = nrno");
</code></pre>
<p>this results in passing a string <code>SELECT * FROM student where rno = nrno</code> to sqlServer which is not what you want.</p>
<p>you can change it <a href="http://#1700770" rel="nofollow">as specified by Richie</a> to</p>
<pre><code>`java.sql.ResultSet rslt = stmt.executeQuery (" SELECT * FROM student where rno =" +` nrno);
</code></pre>
<p>Or better use parametrised call as the first approach may be prone to sql Injection </p>
<pre><code>PreparedStatement st = conn.prepareStatement(
"SELECT * FROM student where rno = ?");
st.setInt(1, nrno);
</code></pre>
<p>In your case you are parssing nrno to int so probably there is no issue with sql injection but it is saver to user parametrised approach anyway (say the parameter type changes to string in some future release)</p>
http://stackoverflow.com/questions/155246/how-do-you-truncate-all-tables-in-a-database-using-tsql/156813#1568137Answer by kristof for How do you truncate all tables in a database using TSQL?kristof2008-10-01T09:10:22Z2009-10-29T11:02:58Z<p>When dealing with deleting data from tables which have foreign key relationships - which is basically the case with any properly designed database - we can disable all the constraints, delete all the data and then re-enable constraints</p>
<pre><code>-- disable all constraints
EXEC sp_msforeachtable "ALTER TABLE ? NOCHECK CONSTRAINT all"
-- delete data in all tables
EXEC sp_MSForEachTable "DELETE FROM ?"
-- enable all constraints
exec sp_msforeachtable "ALTER TABLE ? WITH CHECK CHECK CONSTRAINT all"
</code></pre>
<p>More on disabling constraints and triggers <a href="http://stackoverflow.com/questions/123558/sql-server-2005-t-sql-to-temporarily-disable-a-trigger#123966">here</a></p>
<p>if some of the tables have identity columns we may want to reseed them</p>
<pre><code>EXEC sp_MSforeachtable "DBCC CHECKIDENT ( '?', RESEED, 0)"
</code></pre>
<p>Note that the behaviour of RESEED differs between brand new table, and one which had had some date inserted previously from <a href="http://msdn.microsoft.com/en-us/library/aa258817%28SQL.80%29.aspx" rel="nofollow">BOL</a>:</p>
<blockquote>
<p><strong>DBCC CHECKIDENT ('table_name', RESEED, newReseedValue)</strong></p>
<p>The current identity value is set to
the newReseedValue. If no rows have
been inserted to the table since it
was created, the first row inserted
after executing DBCC CHECKIDENT will
use newReseedValue as the identity.
Otherwise, the next row inserted will
use newReseedValue + 1. If the value
of newReseedValue is less than the
maximum value in the identity column,
error message 2627 will be generated
on subsequent references to the table.</p>
</blockquote>
<p>Thanks to <a href="http://stackoverflow.com/users/23566/robert-claypool">Robert</a> for pointing out the fact that disabling constraints does not allow to use truncate, the constraints would have to be dropped, and then recreated</p>
http://stackoverflow.com/questions/1589214/t-sql-looping-through-an-array-of-known-values/1589293#15892931Answer by kristof for T-SQL: Looping through an array of known valueskristof2009-10-19T15:17:40Z2009-10-19T15:17:40Z<p>I usually use the following approach</p>
<pre><code>DECLARE @calls TABLE (
id INT IDENTITY(1,1)
,parameter INT
)
INSERT INTO @calls
select parameter from some_table where some_condition -- here you populate your parameters
declare @i int
declare @n int
declare @myId int
select @i = min(id), @n = max(id) from @calls
while @i <= @n
begin
select
@myId = parameter
from
@calls
where id = @i
EXECUTE p_MyInnerProcedure @myId
set @i = @i+1
end
</code></pre>
http://stackoverflow.com/questions/314824/t-sql-opposite-to-string-concatenation-how-to-split-string-into-multiple-recor4T-SQL: Opposite to string concatenation - how to split string into multiple recordskristof2008-11-24T17:17:56Z2009-10-17T16:49:36Z
<p>I have seen <a href="http://stackoverflow.com/questions/tagged/concatenation+sql">a couple of questions related to string concatenation</a> in SQL.
I wonder how would you approach the opposite problem: splitting coma delimited string into rows of data:</p>
<p>Lets say I have tables:</p>
<pre><code>userTypedTags(userID,commaSeparatedTags) 'one entry per user
tags(tagID,name)
</code></pre>
<p>And want to insert data into table</p>
<pre><code>userTag(userID,tagID) 'multiple entries per user
</code></pre>
<p>Inspired by <a href="http://stackoverflow.com/questions/314682/which-tags-are-not-in-the-database">Which tags are not in the database?</a> question</p>
<p><strong>EDIT</strong></p>
<p>Thanks for the answers, actually more then one deserves to be accepted but I can only pick one, and the <a href="http://stackoverflow.com/questions/314824/t-sql-opposite-to-string-concatenation-how-to-split-string-into-multiple-records#314917">solution presented by Cade Roux</a> with recursions seems pretty clean to me. It works on SQL Server 2005 and above. </p>
<p>For earlier version of SQL Server the solution <a href="http://stackoverflow.com/questions/314824/t-sql-opposite-to-string-concatenation-how-to-split-string-into-multiple-records#314833">provided by miies</a> can be used.
For working with text data type <a href="http://stackoverflow.com/questions/314824/t-sql-opposite-to-string-concatenation-how-to-split-string-into-multiple-records#314866">wcm answer</a> will be helpful. Thanks again.</p>
http://stackoverflow.com/questions/233919/insert-vs-insert-into10INSERT vs INSERT INTOkristof2008-10-24T15:02:31Z2009-10-07T11:48:18Z
<p>I have been working with TSQL in MSSQL for some time now and somehow whenever I have to insert data into a table I tend to use syntax</p>
<pre><code>INSERT INTO myTable <something here>
</code></pre>
<p>I understand that keyword INTO is optional here and I do not have to use it but somehow it grew into habit in my case.</p>
<p>My question is: </p>
<ul>
<li>Are there any implications of using INSERT syntax versus INSERT INTO?</li>
<li>Which one complies fully with the standard?</li>
<li>Are they both valid in other implementations of SQL standard?</li>
</ul>
http://stackoverflow.com/questions/1530293/bidirectional-replication-update-record-problem/1530852#15308520Answer by kristof for Bidirectional replication update record problemkristof2009-10-07T10:45:58Z2009-10-07T10:52:45Z<p>I think that adding dateUpdated field on both tables could help. This way in your replication code a record would be updated only if dateUpdated is greater then the one already stored.</p>
<p>That dateUpdated field would obviously store the datetime when the original record was updated, not when the replication was performed</p>
http://stackoverflow.com/questions/1492411/sql-server-select-from-stored-procedure/1492469#14924692Answer by kristof for SQL Server - SELECT FROM stored procedurekristof2009-09-29T13:16:17Z2009-09-29T13:16:17Z<p>You should look at this excellent article by Erland Sommarskog:</p>
<ul>
<li><a href="http://www.sommarskog.se/share%5Fdata.html" rel="nofollow">How to Share Data Between Stored Procedure</a></li>
</ul>
<p>It basically lists all available options for your scenario. </p>
http://stackoverflow.com/questions/163098/how-do-i-shrink-the-transaction-log-on-ms-sql-2000-databases/163218#1632182Answer by kristof for How do I shrink the transaction log on MS SQL 2000 databases?kristof2008-10-02T16:08:50Z2009-09-29T11:08:57Z<p>That should do the job</p>
<pre><code>use master
go
dump transaction <YourDBName> with no_log
go
use <YourDBName>
go
DBCC SHRINKFILE (<YourDBNameLogFileName>, 100) -- where 100 is the size you may want to shrink it to in MB, change it to your needs
go
-- then you can call to check that all went fine
dbcc checkdb(<YourDBName>)
</code></pre>
<p><strong>A word of warning</strong></p>
<p>You would only really use it on a test/development database where you do not need a proper backup strategy as dumping the log will result in losing transactions history. In live systems you should use solution sugested by <a href="http://stackoverflow.com/questions/163098/how-do-i-shrink-the-transaction-log-on-ms-sql-2000-databases/163117#163117">Cade Roux</a></p>
http://stackoverflow.com/questions/101079/sql-server-management-studio-tips-for-improving-the-tsql-coding-process14SQL Server Management Studio – tips for improving the TSQL coding processkristof2008-09-19T10:56:32Z2009-09-24T01:05:14Z
<p>I used to work in a place where a common practice was to use Pair Programming. I remember how many small things we could learn from each other when working together on the code. Picking up new shortcuts, code snippets etc. with time significantly improved our efficiency of writing code.</p>
<p>Since I started working with SQL Server I have been left on my own. The best habits I would normally pick from working together with other people which I cannot do now.</p>
<p>So here is the question:</p>
<ul>
<li>What are you tips on efficiently
writing TSQL code using SQL Server
Management Studio? </li>
<li>Please keep the
tips to 2 – 3 things/shortcuts that
you think improve you speed of
coding </li>
<li>Please stay within the scope
of TSQL and SQL Server Management
Studio 2005/2008 If the feature is
specific to the version of
Management Studio please indicate:
e.g. “Works with SQL Server 2008
only"</li>
</ul>
<p>Thanks</p>
<p><strong>EDIT:</strong></p>
<p>I am afraid that I could have been misunderstood by some of you.
I am not looking for tips for writing efficient TSQL code but rather for advice on how to efficiently use Management Studio to speed up the coding process itself. </p>
<p>The type of answers that I am looking for are: </p>
<ul>
<li>use of templates, </li>
<li>keyboard-shortcuts, </li>
<li>use of IntelliSense plugins etc. </li>
</ul>
<p>Basically those little things that make the coding experience a bit more efficient and pleasant.</p>
<p>Thanks again</p>
http://stackoverflow.com/questions/101079/sql-server-management-studio-tips-for-improving-the-tsql-coding-process/102686#10268615Answer by kristof for SQL Server Management Studio – tips for improving the TSQL coding processkristof2008-09-19T15:15:38Z2009-09-24T00:32:26Z<p>community owned wiki Answer - feel free to edit or add comments:</p>
<p><strong>Keyboard Shortcuts</strong> </p>
<ul>
<li><strong>F5</strong> or <strong>Ctrl + E</strong> or <strong>Alt + x</strong> - execute TSQL code</li>
<li><strong>Ctrl + R</strong> – show/hide Results Pane</li>
<li><strong>Ctrl + N</strong> – Open New Query Window</li>
<li><strong>Ctrl + L</strong> – Display query execution plan</li>
</ul>
<p><strong>Editing Shortcuts</strong> </p>
<ul>
<li><strong>Ctrl + K,C</strong> and <strong>Ctrl + K,U</strong> - comment/uncomment selected block of code (<a href="#119663" rel="nofollow">suggested by Unsliced</a>)</li>
<li><strong>Ctrl + Shift + U</strong> and <strong>Ctrl + Shift + L</strong> - changes selected text to UPPER/lower case</li>
</ul>
<p><strong>Addons</strong> </p>
<ul>
<li><a href="http://www.red-gate.com/Products/SQL%5FPrompt/index.htm" rel="nofollow">Red Gate's SQL Prompt</a> - IntelliSense (<a href="#101091" rel="nofollow">suggested by Galwegian</a>)</li>
<li><a href="http://www.sqlinform.com/" rel="nofollow">SQLinForm</a> - formatting of TSQL (<a href="#101091" rel="nofollow">suggested by Galwegian</a>)</li>
</ul>
<p><strong>Other Tips</strong></p>
<ul>
<li>Using comma prefix style (<a href="#106042" rel="nofollow">suggested by Cade Roux</a>)</li>
<li>Using keyboard accelerators (<a href="#113539" rel="nofollow">suggested by kcrumley</a>)</li>
</ul>
<p><strong>Useful Links</strong></p>
<ul>
<li><a href="http://msdn.microsoft.com/en-us/library/ms174205.aspx" rel="nofollow">SQL Server Management Studio Keyboard Shortcuts (full list)</a></li>
</ul>
http://stackoverflow.com/questions/1443704/query-to-list-number-of-records-in-each-table-in-a-database1Query to list number of records in each table in a databasekristof2009-09-18T10:27:50Z2009-09-18T12:52:17Z
<p>How to list row count of each table in the database. Some equivalent of </p>
<pre><code>select count(*) from table1
select count(*) from table2
...
select count(*) from tableN
</code></pre>
<p>I will post a solution but other approaches are welcome</p>
http://stackoverflow.com/questions/1443704/query-to-list-number-of-records-in-each-table-in-a-database/1443712#14437120Answer by kristof for Query to list number of records in each table in a databasekristof2009-09-18T10:28:52Z2009-09-18T10:28:52Z<p>The first thing that came to mind was to use sp_msForEachTable </p>
<pre><code>exec sp_msforeachtable 'select count(*) from ?'
</code></pre>
<p>that does not list the table names though, so it can be extended to </p>
<pre><code>exec sp_msforeachtable 'select parsename(''?'', 1), count(*) from ?'
</code></pre>
<p>The problem here is that if the database has more than 100 tables you will get the following error message:</p>
<blockquote>
<p>The query has exceeded the maximum
number of result sets that can be
displayed in the results grid. Only
the first 100 result sets are
displayed in the grid.</p>
</blockquote>
<p>So I ended up using table variable to store the results</p>
<pre><code>declare @stats table (n sysname, c int)
insert into @stats
exec sp_msforeachtable 'select parsename(''?'', 1), count(*) from ?'
select
*
from @stats
order by c desc
</code></pre>
http://stackoverflow.com/questions/1438654/how-do-i-drop-all-foreign-key-constraints-on-a-table-in-sql-server-2000/1438933#14389332Answer by kristof for How do I drop all foreign-key constraints on a table in Sql Server 2000?kristof2009-09-17T13:35:46Z2009-09-17T13:56:59Z<p>If simply disabling constraints is an option here, you can use:</p>
<pre><code>ALTER TABLE myTable NOCHECK CONSTRAINT all
</code></pre>
<p>then you can switch them back on simply using:</p>
<pre><code>ALTER TABLE myTable WITH CHECK CHECK CONSTRAINT all
</code></pre>
<p>If you want to disable constrains in all tables you can use:</p>
<pre><code>-- disable all constraints
EXEC sp_msforeachtable "ALTER TABLE ? NOCHECK CONSTRAINT all"
-- enable all constraints
exec sp_msforeachtable "ALTER TABLE ? WITH CHECK CHECK CONSTRAINT all"
</code></pre>
<p>More in the question: <a href="http://stackoverflow.com/questions/159038/can-foreign-key-constraints-be-temporarily-disabled-using-tsql">Can foreign key constraints be
temporarily disabled using TSQL?</a></p>
<p>But if you need to drop constraints permanently you can use <a href="http://www.databasejournal.com/scripts/article.php/1502751/Drop-All-Constraints.htm" rel="nofollow">this script posted on databasejurnal.com</a>. </p>
<p>Just modify it slightly to only drop the foreign keys</p>
<pre><code>create proc sp_drop_fk_constraints
@tablename sysname
as
-- credit to: douglas bass
set nocount on
declare @constname sysname,
@cmd varchar(1024)
declare curs_constraints cursor for
select name
from sysobjects
where xtype in ('F')
and (status & 64) = 0
and parent_obj = object_id(@tablename)
open curs_constraints
fetch next from curs_constraints into @constname
while (@@fetch_status = 0)
begin
select @cmd = 'ALTER TABLE ' + @tablename + ' DROP CONSTRAINT ' + @constname
exec(@cmd)
fetch next from curs_constraints into @constname
end
close curs_constraints
deallocate curs_constraints
return 0
</code></pre>
http://stackoverflow.com/questions/1238760/row-is-not-inserting-into-table/1238832#12388320Answer by kristof for row is not inserting into tablekristof2009-08-06T13:18:44Z2009-08-06T13:40:33Z<p>My guess would be that the transaction was not committed properly, initially I thought that it was because of nested transactions (I work in SQLServer) but could be basically because of not properly committed transaction</p>
http://stackoverflow.com/questions/461911/asp-net-accessing-master-page-elements-form-the-content-page0ASP.NET - Accessing Master Page elements form the Content Pagekristof2009-01-20T16:02:43Z2009-07-28T11:01:26Z
<p>Can the elements of the Master Page be accessed from the Content Page?</p>
<p>Lets say I have MasterPage1 and ContentPage1 that inherits from the MasterPage1, and the MasterPage1 has a button: Button1.</p>
<p>Can I change the property of that button from the content page, for example to make Button1 invisible, inactive etc? How can I accomplish this?</p>
<p>I am using .net2.0</p>
http://stackoverflow.com/questions/770238/neural-networks-for-email-spam-detection2Neural networks for email spam detectionkristof2009-04-20T21:44:02Z2009-07-19T05:20:59Z
<p>Let's say you have access to an email account with the history of received emails from the last years (~10k emails) classified into 2 groups</p>
<ul>
<li>genuine email</li>
<li>spam</li>
</ul>
<p>How would you approach the task of creating a neural network solution that could be used for spam detection - basically classifying any email either as spam or not spam?</p>
<p>Let's assume that the email fetching is already in place and we need to focus on classification part only.</p>
<p><strong>The main points which I would hope to get answered would be:</strong></p>
<ol>
<li>Which parameters to choose as the input for the NN, and why?</li>
<li>What structure of the NN would most likely work best for such task?</li>
</ol>
<p>Also any resource recommendations, or existing implementations (preferably in C#) are more than welcome</p>
<p>Thank you</p>
<p><strong>EDIT</strong></p>
<ul>
<li>I am set on using neural networks as the main aspect on the project is to test how the NN approach would work for spam detection</li>
<li>Also it is a "toy problem" simply to explore subject on neural networks and spam</li>
<li>I should also mention that this is simply an exercise that my nephew came out with, and I was just asked for some advice. He is not a programmer by profession but with a pretty good programming skills. He simply wants to use that as a way to keep up with his programming skills and to explore the NN. His mind is very much set on "spam detection" in this context as well.</li>
</ul>
http://stackoverflow.com/questions/1079029/sql-server-datetime-format-incorrrect/1079139#10791390Answer by kristof for Sql Server DATETIME format incorrrectkristof2009-07-03T12:28:38Z2009-07-03T12:51:37Z<p>When you type date in the format of 'xxxxxx' it seems that SQLServer assumess it is an ISO format yymmdd and as such it is not affected by the SET DATEFORMAT</p>
<p>I was aware of 2 such formats - so called safe formats </p>
<ul>
<li>ISO: yyyymmdd </li>
<li>ISO8601:yyyy-mm-ddThh:mi:ss.mmm</li>
</ul>
<p>but it seems that yymmdd is also ISO - check <a href="http://msdn.microsoft.com/en-us/library/ms187928.aspx" rel="nofollow">BOL</a> Date and Time Styles - format 12</p>
<p>That would explain why the <a href="#1079044" rel="nofollow">solution posted by Scorpio</a> did not work</p>
<p>You can use the solution provided by <a href="#1079095" rel="nofollow">butterchicken</a> with the format specification (12) to be on a safe side:</p>
<pre><code>declare @dt varchar(6)
select @dt = '010109'
select convert(datetime,RIGHT(@dt,2) + SUBSTRING(@dt,3,2) + LEFT(@dt,2),12)
</code></pre>
<p>If possible I would be ideal if you could change the column to datetime to avoids similar surprises in the future</p>
http://stackoverflow.com/questions/472578/dbcc-checkident-sets-identity-to-0/472833#4728331Answer by kristof for DBCC CHECKIDENT Sets Identity to 0kristof2009-01-23T13:15:47Z2009-07-02T10:50:57Z<p>As you pointed out in your question it is a <a href="http://msdn.microsoft.com/en-us/library/aa258817%28SQL.80%29.aspx" rel="nofollow">documented behavior</a>. I still find it strange though. I use to repopulate the test database and even though I do not rely on the values of identity fields it was a bit of annoying to have different values when populating the database for the first time from scratch and after removing all data and populating again.</p>
<p>A possible solution is to use <strong>truncate</strong> to clean the table instead of delete. But then you need to drop all the constraints and recreate them afterwards</p>
<p>In that way it always behaves as a newly created table and there is no need to call DBCC CHECKIDENT. The first identity value will be the one specified in the table definition and it will be the same no matter if you insert the data for the first time or for the N-th</p>
http://stackoverflow.com/questions/1066275/impersonate-using-forms-authentication/1068809#10688090Answer by kristof for Impersonate using Forms Authenticationkristof2009-07-01T12:10:29Z2009-07-01T12:10:29Z<p>You may find this useful:</p>
<ul>
<li><a href="http://www.4guysfromrolla.com/articles/102208-1.aspx" rel="nofollow">how to create a login screen that
allows Admin users to log in as
another user in the user database</a></li>
</ul>
<p><strong>EDIT</strong></p>
<p>On reading your question more closely, I am not sure if that approach would work with your scenario though; when you login using Forms Authentication and Impersonate Active Directory user</p>
http://stackoverflow.com/questions/1062769/dictionary-table-relationships-ms-sql-2005/1062834#10628342Answer by kristof for Dictionary table relationships (MS SQL 2005)kristof2009-06-30T10:03:03Z2009-06-30T10:03:03Z<p>It looks to me that you could consider an alternative design</p>
<pre><code>Dictionary table
ID (pk)
DICTIONARY_TYPE_ID (fk to dictionaryType)
ITEM
DictionaryType table
ID (pk)
DESCRIPTION
</code></pre>
<p>and then make links to the <strong>ID</strong> of <strong>DictionaryType</strong> table in places where you currently want to reference <strong>Type</strong> field from your original design</p>
http://stackoverflow.com/questions/1058370/how-to-do-sorting-in-sql-server-varchar-types/1058637#10586370Answer by kristof for How to do sorting in SQL SERVER varchar typeskristof2009-06-29T14:29:10Z2009-06-29T14:35:07Z<p>If you store your data as varchar it is by default sorted as varchar with the sorting order specified by the <a href="http://msdn.microsoft.com/en-us/library/aa174903%28SQL.80%29.aspx" rel="nofollow">collation settings</a></p>
<p>when you have string: <code>'3','111','2'</code> and you sort desc you will get <code>'3','2','111'</code> in the same way as if you had strings <code>'c','aaa','b'</code> sort desc as <code>'c','b','aaa'</code></p>
<p>If your field stores numbers only then store them as numbers or use the casting as suggested by <a href="#1058396" rel="nofollow">tekBlues</a></p>
<p>If you have both numbers and strings and are not happy with the default sorting behaviour for strings you may need to define your own sorting criteria e.g. solution suggested by
<a href="#1058432" rel="nofollow">Mladen</a></p>
http://stackoverflow.com/questions/1031690/adoquery-trigger-and-requery-bug/1031734#10317342Answer by kristof for ADOQuery, trigger and requery bugkristof2009-06-23T10:23:30Z2009-06-23T12:02:28Z<p>I am not familiar with ADOQuery but as you are saying that you are getting an ID of the table affected by trigger while expecting to get ID of the original table perhaps it is a matter of using equivalent function to SQL "scope_identity" See <a href="http://stackoverflow.com/questions/42648/best-way-to-get-identity-of-inserted-row/42655#42655">Best way to get identity of inserted row?</a></p>
<p><strong>EDIT</strong> </p>
<p>It seems that the problem is related to the fact that the ADO Query itself is useing @@Identity to get the ID of added record while it should have really use scope_identity(), that has implications when you have triggers inserting data into another table which contains identity columns as it is in your case - see link above for details of scope_identity and @@identity. <a href="http://coding.derkeiler.com/Archive/Delphi/borland.public.delphi.database.ado/2004-05/0109.html" rel="nofollow">This post</a> has some details of the problem</p>
http://stackoverflow.com/questions/93511/counter-inside-xslfor-each-loop3Counter inside xsl:for-each loopkristof2008-09-18T15:19:43Z2009-05-30T03:04:51Z
<p>How to get a counter inside xsl:for-each loop that would reflect the number of current element processed.<br />
For example my source XML is</p>
<pre><code><books>
<book>
<title>The Unbearable Lightness of Being </title>
</book>
<book>
<title>Narcissus and Goldmund</title>
</book>
<book>
<title>Choke</title>
</book>
</books>
</code></pre>
<p>What I want to get is:</p>
<pre><code><newBooks>
<newBook>
<countNo>1</countNo>
<title>The Unbearable Lightness of Being </title>
</newBook>
<newBook>
<countNo>2</countNo>
<title>Narcissus and Goldmund</title>
</newBook>
<newBook>
<countNo>3</countNo>
<title>Choke</title>
</newBook>
</newBooks>
</code></pre>
<p>The XSLT to modify:</p>
<pre><code><xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/>
<xsl:template match="/">
<newBooks>
<xsl:for-each select="books/book">
<newBook>
<countNo>???</countNo>
<title>
<xsl:value-of select="title"/>
</title>
</newBook>
</xsl:for-each>
</newBooks>
</xsl:template>
</xsl:stylesheet>
</code></pre>
<p>So the question is what to put in place of ???. Is there any standard keyword or do I simply must declare a variable and increment it inside the loop?</p>
<p>As the question is pretty long I should probably expect one line or one word answer :)</p>
http://stackoverflow.com/questions/1807819/creating-a-range-of-numbers-in-an-sql-subquery/1807835#1807835Comment by kristof on Creating a range of numbers in an sql subquerykristof2009-11-27T10:17:50Z2009-11-27T10:17:50Ztrue, my bad somehow I didn't notice that when OPTION (MAXRECURSION 0) is specified there is no limit on the recursions. Thankshttp://stackoverflow.com/questions/1807819/creating-a-range-of-numbers-in-an-sql-subquery/1807835#1807835Comment by kristof on Creating a range of numbers in an sql subquerykristof2009-11-27T10:13:20Z2009-11-27T10:13:20ZJust be aware that the default maximum number of recursions is 100. This can be changed to maximum of 32767 by calling: option (maxrecursion 32767). see <a href="http://msdn.microsoft.com/en-us/library/ms175972.aspx" rel="nofollow">msdn.microsoft.com/en-us/library/…</a>http://stackoverflow.com/questions/1581246/how-can-my-server-securely-authenticate-iphone-in-app-purchase/1794470#1794470Comment by kristof on How can my server securely authenticate iPhone in-app purchase?kristof2009-11-25T15:12:41Z2009-11-25T15:12:41ZI am not sure if I understand your approach with device's UUID correctly. My understanding is that you are allowed to install an application on multiple devices without extra cost. Also restricting application to device UUID would mean that if you upgrade/change your phone you need to purchase all the apps again.http://stackoverflow.com/questions/1770777/2147217833-string-or-binary-data-would-be-truncatedComment by kristof on 2147217833 String or binary data would be truncatedkristof2009-11-20T17:02:43Z2009-11-20T17:02:43Zcould you add the stored proc code as well?http://stackoverflow.com/questions/1770777/2147217833-string-or-binary-data-would-be-truncatedComment by kristof on 2147217833 String or binary data would be truncatedkristof2009-11-20T17:00:31Z2009-11-20T17:00:31Zis there any reason for casting date to string before assigning to datetime type? why not just do objComm.Parameters("@ReviewDate") = dReviewDate objComm.Parameters("@DateReviewed") = Datehttp://stackoverflow.com/questions/1769648/addition-with-null-values/1769873#1769873Comment by kristof on Addition with NULL valueskristof2009-11-20T11:30:24Z2009-11-20T11:30:24Zthat would not meet the criteria to result in null when both values are null. using this approach adding two null values would result in 0http://stackoverflow.com/questions/1763013/using-joins-in-mysql/1763081#1763081Comment by kristof on Using JOINS in MySQLkristof2009-11-19T12:55:53Z2009-11-19T12:55:53Zit would return multiple records for customer where there is more that one match in the join. But that is probably what we want here if there many appointments meeting the data criteria. It is just that the original query returns only one record per customerhttp://stackoverflow.com/questions/1754674/how-do-i-merge-two-or-more-rows-based-on-their-foreign-keyComment by kristof on How do i merge two or more rows based on their foreign key?kristof2009-11-18T10:17:09Z2009-11-18T10:17:09Zcould you simply post an example of the values in those tables and the result that you expect after mentioned "merge" operation. Even after your edit it is difficult to understand what you want to achieve.
http://stackoverflow.com/questions/1700619/select-value-from-sqlserver-problem/1700674#1700674Comment by kristof on select value from sqlserver problem kristof2009-11-09T14:43:10Z2009-11-09T14:43:10Zthanks for the comment bobince, updated my answer to add the code example.http://stackoverflow.com/questions/1700936/sql-join-optimalization-get-rid-of-unionComment by kristof on SQL join optimalization (get rid of UNION) kristof2009-11-09T14:18:15Z2009-11-09T14:18:15ZI'm Sorry Zsolt and Recursive I did not mean to sound harsh, I was referring just to "...he do not know how to use or in the where part" and perhaps bashing was too strong word in this context. My only intention was to point out that there may be some situations when the use of UNION would be preferred over OR – kristof 0 secs agohttp://stackoverflow.com/questions/1700936/sql-join-optimalization-get-rid-of-unionComment by kristof on SQL join optimalization (get rid of UNION) kristof2009-11-09T13:27:26Z2009-11-09T13:27:26ZUNION sometimes performs better then OR, at least in SqlServer prior to 2008 (not sure about Oracle) so I would not be bashing your collegue for using ithttp://stackoverflow.com/questions/155246/how-do-you-truncate-all-tables-in-a-database-using-tsql/156813#156813Comment by kristof on How do you truncate all tables in a database using TSQL?kristof2009-10-29T11:05:13Z2009-10-29T11:05:13ZThanks Raghav, corrected now.http://stackoverflow.com/questions/1560012/are-there-any-big-names-running-on-the-cloud/1560047#1560047Comment by kristof on Are there any big names running on the cloud?kristof2009-10-13T14:50:10Z2009-10-13T14:50:10ZIt looks like is more about using Google Apps (Docs, Email Spreadsheets etc) than GAE, but it is good to know anywayhttp://stackoverflow.com/questions/1502820/favourite-open-source-google-app-engine-apps-java-or-pythonComment by kristof on Favourite Open Source Google App Engine apps (Java or Python)kristof2009-10-01T09:28:10Z2009-10-01T09:28:10ZThat may be useful as a reference <a href="http://groups.google.com/group/google-appengine/web/google-app-engine-open-source-projects" rel="nofollow">groups.google.com/group/google-appengine/…</a>http://stackoverflow.com/questions/1443704/query-to-list-number-of-records-in-each-table-in-a-database/1444371#1444371Comment by kristof on Query to list number of records in each table in a databasekristof2009-09-18T13:17:36Z2009-09-18T13:17:36ZSo it sound like a compromise of using undocumented stor proc sp_msForEachTable vs using system tables with sometimes not most up to date info. +1 and thanks for the link