User kristof - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T00:18:55Z http://stackoverflow.com/feeds/user/3241 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/464642/how-to-expand-rows-from-count-in-tsql-only/465009#465009 3 Answer by kristof for How to expand rows from count in tsql only kristof 2009-01-21T12:05:14Z 2009-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 &gt; 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#1803380 0 Answer by kristof for Getting debug output in SQL Server Managment Studio kristof 2009-11-26T12:21:17Z 2009-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#1803330 0 Answer by kristof for javascript - know if a link has already been opened. kristof 2009-11-26T12:10:51Z 2009-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#1797603 0 Answer by kristof for How can my server securely authenticate iPhone in-app purchase? kristof 2009-11-25T15:15:21Z 2009-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#1730287 0 Answer by kristof for How to best implement a 1:1 relationship in a RDBMS? kristof 2009-11-13T16:24:15Z 2009-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#1702155 1 Answer by kristof for Round to nearest 5 in SQL Server kristof 2009-11-09T16:32:11Z 2009-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#1723715 0 Answer by kristof for Database Change Management using hand generated scripts kristof 2009-11-12T16:56:07Z 2009-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#1700674 2 Answer by kristof for select value from sqlserver problem kristof 2009-11-09T12:22:41Z 2009-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#156813 7 Answer by kristof for How do you truncate all tables in a database using TSQL? kristof 2008-10-01T09:10:22Z 2009-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#1589293 1 Answer by kristof for T-SQL: Looping through an array of known values kristof 2009-10-19T15:17:40Z 2009-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 &lt;= @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-recor 4 T-SQL: Opposite to string concatenation - how to split string into multiple records kristof 2008-11-24T17:17:56Z 2009-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-into 10 INSERT vs INSERT INTO kristof 2008-10-24T15:02:31Z 2009-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 &lt;something here&gt; </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#1530852 0 Answer by kristof for Bidirectional replication update record problem kristof 2009-10-07T10:45:58Z 2009-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#1492469 2 Answer by kristof for SQL Server - SELECT FROM stored procedure kristof 2009-09-29T13:16:17Z 2009-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#163218 2 Answer by kristof for How do I shrink the transaction log on MS SQL 2000 databases? kristof 2008-10-02T16:08:50Z 2009-09-29T11:08:57Z <p>That should do the job</p> <pre><code>use master go dump transaction &lt;YourDBName&gt; with no_log go use &lt;YourDBName&gt; go DBCC SHRINKFILE (&lt;YourDBNameLogFileName&gt;, 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(&lt;YourDBName&gt;) </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-process 14 SQL Server Management Studio – tips for improving the TSQL coding process kristof 2008-09-19T10:56:32Z 2009-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#102686 15 Answer by kristof for SQL Server Management Studio – tips for improving the TSQL coding process kristof 2008-09-19T15:15:38Z 2009-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-database 1 Query to list number of records in each table in a database kristof 2009-09-18T10:27:50Z 2009-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#1443712 0 Answer by kristof for Query to list number of records in each table in a database kristof 2009-09-18T10:28:52Z 2009-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#1438933 2 Answer by kristof for How do I drop all foreign-key constraints on a table in Sql Server 2000? kristof 2009-09-17T13:35:46Z 2009-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 &amp; 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#1238832 0 Answer by kristof for row is not inserting into table kristof 2009-08-06T13:18:44Z 2009-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-page 0 ASP.NET - Accessing Master Page elements form the Content Page kristof 2009-01-20T16:02:43Z 2009-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-detection 2 Neural networks for email spam detection kristof 2009-04-20T21:44:02Z 2009-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#1079139 0 Answer by kristof for Sql Server DATETIME format incorrrect kristof 2009-07-03T12:28:38Z 2009-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#472833 1 Answer by kristof for DBCC CHECKIDENT Sets Identity to 0 kristof 2009-01-23T13:15:47Z 2009-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#1068809 0 Answer by kristof for Impersonate using Forms Authentication kristof 2009-07-01T12:10:29Z 2009-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#1062834 2 Answer by kristof for Dictionary table relationships (MS SQL 2005) kristof 2009-06-30T10:03:03Z 2009-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#1058637 0 Answer by kristof for How to do sorting in SQL SERVER varchar types kristof 2009-06-29T14:29:10Z 2009-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#1031734 2 Answer by kristof for ADOQuery, trigger and requery bug kristof 2009-06-23T10:23:30Z 2009-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-loop 3 Counter inside xsl:for-each loop kristof 2008-09-18T15:19:43Z 2009-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>&lt;books&gt; &lt;book&gt; &lt;title&gt;The Unbearable Lightness of Being &lt;/title&gt; &lt;/book&gt; &lt;book&gt; &lt;title&gt;Narcissus and Goldmund&lt;/title&gt; &lt;/book&gt; &lt;book&gt; &lt;title&gt;Choke&lt;/title&gt; &lt;/book&gt; &lt;/books&gt; </code></pre> <p>What I want to get is:</p> <pre><code>&lt;newBooks&gt; &lt;newBook&gt; &lt;countNo&gt;1&lt;/countNo&gt; &lt;title&gt;The Unbearable Lightness of Being &lt;/title&gt; &lt;/newBook&gt; &lt;newBook&gt; &lt;countNo&gt;2&lt;/countNo&gt; &lt;title&gt;Narcissus and Goldmund&lt;/title&gt; &lt;/newBook&gt; &lt;newBook&gt; &lt;countNo&gt;3&lt;/countNo&gt; &lt;title&gt;Choke&lt;/title&gt; &lt;/newBook&gt; &lt;/newBooks&gt; </code></pre> <p>The XSLT to modify:</p> <pre><code>&lt;xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"&gt; &lt;xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/&gt; &lt;xsl:template match="/"&gt; &lt;newBooks&gt; &lt;xsl:for-each select="books/book"&gt; &lt;newBook&gt; &lt;countNo&gt;???&lt;/countNo&gt; &lt;title&gt; &lt;xsl:value-of select="title"/&gt; &lt;/title&gt; &lt;/newBook&gt; &lt;/xsl:for-each&gt; &lt;/newBooks&gt; &lt;/xsl:template&gt; &lt;/xsl:stylesheet&gt; </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#1807835 Comment by kristof on Creating a range of numbers in an sql subquery kristof 2009-11-27T10:17:50Z 2009-11-27T10:17:50Z true, my bad somehow I didn't notice that when OPTION (MAXRECURSION 0) is specified there is no limit on the recursions. Thanks http://stackoverflow.com/questions/1807819/creating-a-range-of-numbers-in-an-sql-subquery/1807835#1807835 Comment by kristof on Creating a range of numbers in an sql subquery kristof 2009-11-27T10:13:20Z 2009-11-27T10:13:20Z Just 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/&hellip;</a> http://stackoverflow.com/questions/1581246/how-can-my-server-securely-authenticate-iphone-in-app-purchase/1794470#1794470 Comment by kristof on How can my server securely authenticate iPhone in-app purchase? kristof 2009-11-25T15:12:41Z 2009-11-25T15:12:41Z I 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-truncated Comment by kristof on 2147217833 String or binary data would be truncated kristof 2009-11-20T17:02:43Z 2009-11-20T17:02:43Z could you add the stored proc code as well? http://stackoverflow.com/questions/1770777/2147217833-string-or-binary-data-would-be-truncated Comment by kristof on 2147217833 String or binary data would be truncated kristof 2009-11-20T17:00:31Z 2009-11-20T17:00:31Z is there any reason for casting date to string before assigning to datetime type? why not just do objComm.Parameters(&quot;@ReviewDate&quot;) = dReviewDate objComm.Parameters(&quot;@DateReviewed&quot;) = Date http://stackoverflow.com/questions/1769648/addition-with-null-values/1769873#1769873 Comment by kristof on Addition with NULL values kristof 2009-11-20T11:30:24Z 2009-11-20T11:30:24Z that would not meet the criteria to result in null when both values are null. using this approach adding two null values would result in 0 http://stackoverflow.com/questions/1763013/using-joins-in-mysql/1763081#1763081 Comment by kristof on Using JOINS in MySQL kristof 2009-11-19T12:55:53Z 2009-11-19T12:55:53Z it 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 customer http://stackoverflow.com/questions/1754674/how-do-i-merge-two-or-more-rows-based-on-their-foreign-key Comment by kristof on How do i merge two or more rows based on their foreign key? kristof 2009-11-18T10:17:09Z 2009-11-18T10:17:09Z could you simply post an example of the values in those tables and the result that you expect after mentioned &quot;merge&quot; 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#1700674 Comment by kristof on select value from sqlserver problem kristof 2009-11-09T14:43:10Z 2009-11-09T14:43:10Z thanks for the comment bobince, updated my answer to add the code example. http://stackoverflow.com/questions/1700936/sql-join-optimalization-get-rid-of-union Comment by kristof on SQL join optimalization (get rid of UNION) kristof 2009-11-09T14:18:15Z 2009-11-09T14:18:15Z I'm Sorry Zsolt and Recursive I did not mean to sound harsh, I was referring just to &quot;...he do not know how to use or in the where part&quot; 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 ago http://stackoverflow.com/questions/1700936/sql-join-optimalization-get-rid-of-union Comment by kristof on SQL join optimalization (get rid of UNION) kristof 2009-11-09T13:27:26Z 2009-11-09T13:27:26Z UNION 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 it http://stackoverflow.com/questions/155246/how-do-you-truncate-all-tables-in-a-database-using-tsql/156813#156813 Comment by kristof on How do you truncate all tables in a database using TSQL? kristof 2009-10-29T11:05:13Z 2009-10-29T11:05:13Z Thanks Raghav, corrected now. http://stackoverflow.com/questions/1560012/are-there-any-big-names-running-on-the-cloud/1560047#1560047 Comment by kristof on Are there any big names running on the cloud? kristof 2009-10-13T14:50:10Z 2009-10-13T14:50:10Z It looks like is more about using Google Apps (Docs, Email Spreadsheets etc) than GAE, but it is good to know anyway http://stackoverflow.com/questions/1502820/favourite-open-source-google-app-engine-apps-java-or-python Comment by kristof on Favourite Open Source Google App Engine apps (Java or Python) kristof 2009-10-01T09:28:10Z 2009-10-01T09:28:10Z That 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/&hellip;</a> http://stackoverflow.com/questions/1443704/query-to-list-number-of-records-in-each-table-in-a-database/1444371#1444371 Comment by kristof on Query to list number of records in each table in a database kristof 2009-09-18T13:17:36Z 2009-09-18T13:17:36Z So 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