User Mladen Prajdic - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T12:13:42Z http://stackoverflow.com/feeds/user/31345 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1906089/what-is-black-box-testing-and-white-box-testing/1906097#1906097 1 Answer by Mladen Prajdic for What is black box testing and white box testing Mladen Prajdic 2009-12-15T08:59:39Z 2009-12-15T08:59:39Z <p>basicaly yes.</p> <p>in black box testing you test if the expected input to your object produces expected output without the ability to change the underlying code.</p> <p>in white box testing you can see the code and you test all possible paths through it.</p> http://stackoverflow.com/questions/1888544/how-to-select-records-from-last-24-hours-using-sql/1888565#1888565 0 Answer by Mladen Prajdic for How to select records from last 24 hours using SQL? Mladen Prajdic 2009-12-11T14:51:57Z 2009-12-11T14:51:57Z <pre><code>select ... from ... where YourDateColumn &gt;= getdate()-1 </code></pre> http://stackoverflow.com/questions/1888496/what-do-you-use-for-organizing-sql-snippets/1888554#1888554 0 Answer by Mladen Prajdic for What do you use for organizing SQL snippets? Mladen Prajdic 2009-12-11T14:50:38Z 2009-12-11T14:50:38Z <p>i use the free <a href="http://www.ssmstoolspack.com/" rel="nofollow">SSMS Tools Pack</a> add in for SSMS. It has SQL snippet functionality built in.</p> http://stackoverflow.com/questions/1887206/sqlbulkcopy-failing-with-string-conversion-issue/1887236#1887236 0 Answer by Mladen Prajdic for SqlBulkCopy failing with String conversion issue Mladen Prajdic 2009-12-11T10:41:46Z 2009-12-11T10:41:46Z <p>try setting the <a href="http://msdn.microsoft.com/en-us/library/ms189491.aspx" rel="nofollow">SET DATEFORMAT</a> to correct format (ymd, dmy, mdy, ...) for your connection and retry. this error usually happens if you have dates in a localized format and not locale independent format.</p> <p>as for doing it all in one insert this is not recommended because this is considered a long running transaction and not a bulk insert operation.</p> http://stackoverflow.com/questions/1887209/the-row-no-in-query-output/1887220#1887220 0 Answer by Mladen Prajdic for the row no in query output Mladen Prajdic 2009-12-11T10:38:01Z 2009-12-11T10:38:01Z <p>as i understand your question you want to get the number of all rows returned, right? if so use <a href="http://technet.microsoft.com/en-us/library/ms187316.aspx" rel="nofollow">@@rowcount</a></p> http://stackoverflow.com/questions/1816534/random-playlist-algorithm/1833452#1833452 0 Answer by Mladen Prajdic for Random playlist algorithm Mladen Prajdic 2009-12-02T15:02:04Z 2009-12-02T15:02:04Z <p>you could use a trick we do in sql server to order sets in random like this with the use of guid. the values are always distributed equaly random.</p> <pre><code>private IEnumerable&lt;int&gt; RandomIndexes(int startIndexInclusive, int endIndexInclusive) { if (endIndexInclusive &lt; startIndexInclusive) throw new Exception("endIndex must be equal or higher than startIndex"); List&lt;int&gt; originalList = new List&lt;int&gt;(endIndexInclusive - startIndexInclusive); for (int i = startIndexInclusive; i &lt;= endIndexInclusive; i++) originalList.Add(i); return from i in originalList orderby Guid.NewGuid() select i; } </code></pre> http://stackoverflow.com/questions/1811077/creating-sql-server-2000-database-using-sql-server-2008/1811088#1811088 3 Answer by Mladen Prajdic for Creating SQL Server 2000 database using SQL Server 2008. Mladen Prajdic 2009-11-28T00:13:12Z 2009-12-02T10:29:12Z <p>create a database in 80 compatibility mode and you should be ok with regards to sql you use. but you can't restore a 2008 db on a 2000 server.</p> http://stackoverflow.com/questions/1824070/sql-insert-script-generator-with-dependency-trackert/1825919#1825919 0 Answer by Mladen Prajdic for SQL Insert Script Generator with Dependency Trackert Mladen Prajdic 2009-12-01T12:31:47Z 2009-12-01T12:31:47Z <p><a href="http://www.ssmstoolspack.com/" rel="nofollow">SSMS Tools Pack</a> can script your entire database data in the dependency order.</p> http://stackoverflow.com/questions/1820616/deserializing-an-xml-stream-with-invalid-values/1820633#1820633 0 Answer by Mladen Prajdic for Deserializing an xml stream with invalid values Mladen Prajdic 2009-11-30T15:51:30Z 2009-11-30T15:51:30Z <p>you'll have to format it without validating it to your schema. format the values that are wrong and revalidate it with schema.</p> http://stackoverflow.com/questions/1819746/neural-network-framework/1819754#1819754 1 Answer by Mladen Prajdic for neural network framework Mladen Prajdic 2009-11-30T13:14:33Z 2009-11-30T13:14:33Z <p>yes there is and excellent open source framework for .net called <a href="http://www.aforgenet.com/" rel="nofollow">AForge.Net</a></p> http://stackoverflow.com/questions/1819100/the-query-has-been-canceled-because-the-estimated-cost-of-this-query-1660-excee/1819123#1819123 0 Answer by Mladen Prajdic for The query has been canceled because the estimated cost of this query (1660) exceeds the configured threshold of 1500. Contact the system administrator. Mladen Prajdic 2009-11-30T10:57:45Z 2009-11-30T11:24:55Z <p>usually this happens because of different default ANSI setting for SSMS and .net they could create different execution plans. the first you need to check is the execution plans from both sources. you can do this with sql profiler's <a href="http://technet.microsoft.com/en-us/library/ms190233.aspx" rel="nofollow">Showplan XML event</a></p> http://stackoverflow.com/questions/1819095/sql-server-how-to-tell-if-a-database-is-a-system-database/1819178#1819178 0 Answer by Mladen Prajdic for SQL Server: How to tell if a database is a system database? Mladen Prajdic 2009-11-30T11:09:55Z 2009-11-30T11:09:55Z <p>no there's no such option AFAIK. i guess you could check the id the sys.databases.owner_sid = 0x01.</p> <p>i don't think you have to worry about MS changing the system db names. if they did theat you wouldn't have to worry about it for at least 20 years :)</p> http://stackoverflow.com/questions/1819122/how-to-confirm-sql-injection/1819134#1819134 1 Answer by Mladen Prajdic for How to confirm SQL injection Mladen Prajdic 2009-11-30T10:59:41Z 2009-11-30T10:59:41Z <p>after the attack has already happened? no. there isn't. you'll have to check all your sql serevr access point for potential risk. tere are some tools you can use. Check <a href="http://weblogs.sqlteam.com/mladenp/archive/2007/11/20/Free-SQL-Server-tools-that-might-make-your-life-a.aspx" rel="nofollow">here</a> under SQL Injection tools section.</p> http://stackoverflow.com/questions/1808781/error-executing-sql-server-query/1808808#1808808 0 Answer by Mladen Prajdic for error executing sql server query Mladen Prajdic 2009-11-27T13:34:17Z 2009-11-27T13:45:58Z <p>You either have to aggregate your BuildID and Analyzed columns or add them to the group by. Also note that the way you're doing it now is horribly inefficient.</p> <p>Take a look <a href="http://weblogs.sqlteam.com/mladenp/archive/2008/02/04/Back-to-Basics-Count-Count-Count-Sum-or-how-to.aspx" rel="nofollow">here</a> how you can improve your performance by doing only one table scan instead of several hundred you're going to have</p> http://stackoverflow.com/questions/1808754/sql-query-based-upon-object-names-stored-within-a-table-itself/1808823#1808823 0 Answer by Mladen Prajdic for SQL query based upon object names stored within a table itself Mladen Prajdic 2009-11-27T13:36:54Z 2009-11-27T13:36:54Z <p>no there's no such thing. you could use dynamic sql for this but there's really no point in doing so.</p> http://stackoverflow.com/questions/1808766/begin-try-catch-on-sql-server-2005-how-to-send-the-errorstuff-to-the-calling-pa/1808818#1808818 0 Answer by Mladen Prajdic for begin try catch on sql server 2005, how to send the ERROR_stuff to the calling parent? Mladen Prajdic 2009-11-27T13:35:54Z 2009-11-27T13:35:54Z <p>use <a href="http://msdn.microsoft.com/en-us/library/ms178592.aspx" rel="nofollow">raiserror</a> in your child sproc.</p> http://stackoverflow.com/questions/1789298/sql-server-infinite-loop/1789335#1789335 1 Answer by Mladen Prajdic for SQL-Server infinite loop Mladen Prajdic 2009-11-24T11:00:34Z 2009-11-24T11:00:34Z <p>try it :) no it does NOT detect them. it's simply treated as a long running transaction.</p> <p>also any kind of loop is sign of truely bad sql coding practice</p> http://stackoverflow.com/questions/1687279/can-we-pass-parameter-to-a-view-in-sql/1687287#1687287 1 Answer by Mladen Prajdic for can we pass parameter to a view in sql? Mladen Prajdic 2009-11-06T12:32:55Z 2009-11-06T12:32:55Z <p>no. if you must then use a user defined function to which you can pass parameters into.</p> http://stackoverflow.com/questions/1679496/sql-union-problem/1679557#1679557 0 Answer by Mladen Prajdic for sql union problem Mladen Prajdic 2009-11-05T10:07:15Z 2009-11-05T10:07:15Z <p>you could just do this:</p> <pre><code>DECLARE @n TINYINT SET @n = 100 SELECT number, CASE WHEN (number % 2) = 1 THEN 'EVEN' ELSE 'ODD' END AS 'Type' FROM ( SELECT ROW_NUMBER() OVER(ORDER BY number) AS number FROM master..spt_values ) t WHERE number &lt; @n </code></pre> http://stackoverflow.com/questions/1673916/sql-query-for-retrieving-connecting-trains/1674184#1674184 0 Answer by Mladen Prajdic for SQL query for retrieving connecting trains Mladen Prajdic 2009-11-04T14:42:51Z 2009-11-04T14:42:51Z <p>i don't think you really need a shortest path solution for this.</p> <p>usually websites know max 2 train routes between cities. there usually aren't more anyway. if a user wants to use some other route then you have a "travel via" field.</p> <p>so you'd just connect the routes in one.</p> http://stackoverflow.com/questions/1567353/t-sql-query-on-huge-table-running-slow-depending-on-join-conditions/1567563#1567563 0 Answer by Mladen Prajdic for T-SQL query on huge table running slow depending on join conditions Mladen Prajdic 2009-10-14T16:46:49Z 2009-10-14T16:46:49Z <p>the speed increase you see when removing the OR part is because an OR automaticaly does an index scan instead of a seek. by unioning them together you do 2 seeks which is faster.</p> <p>try finding the dupes using the the row_number technique:</p> <pre><code>;with cteDupes(RN, DupeID, DupeTelephone) as ( SELECT row_number() over(partition by sTelephone order by iId_company, sTelephone) RN, iId_company, sTelephone FROM dbo.Company WHERE iId_third_party_id IS NULL ) select * from cteDupes where RN &gt; 1 </code></pre> <p>this will return only duped rows. the bonus of this is that you only get one table pass instead of two.</p> http://stackoverflow.com/questions/1566588/how-to-subselect-in-where-statement-in-sql-server-ce/1566619#1566619 3 Answer by Mladen Prajdic for How to subselect in where statement in SQL Server CE? Mladen Prajdic 2009-10-14T14:25:01Z 2009-10-14T14:25:01Z <p>this makes only one table lookup and not 2 from your previous statement</p> <pre><code>SELECT top 1 LOGIN FROM USERS order by LASTLOGIN desc </code></pre> http://stackoverflow.com/questions/1537836/mssql-does-the-order-by-clause-recalculate-the-value/1538267#1538267 1 Answer by Mladen Prajdic for MSSQL: Does the Order By clause recalculate the value? Mladen Prajdic 2009-10-08T14:41:19Z 2009-10-08T14:41:19Z <p>the table in the select count(*) will be <strong>scanned twice</strong>. once for order and once for select. you can play more with say using top 100 on both subqueries etc to see what happens. obser the number of logical reads that the queries produce.</p> <p>you can see it with this query:</p> <pre><code>SET STATISTICS IO ON USE AdventureWorks GO SELECT (SELECT COUNT(*) FROM Sales.SalesOrderDetail WHERE SalesOrderID = SOH.SalesOrderID) AS c, * FROM Sales.SalesOrderHeader SOH ORDER by (SELECT COUNT(*) FROM Sales.SalesOrderDetail WHERE SalesOrderID = SOH.SalesOrderID) desc GO SELECT (SELECT COUNT(*) FROM Sales.SalesOrderDetail WHERE SalesOrderID = SOH.SalesOrderID) AS c, * FROM Sales.SalesOrderHeader SOH ORDER BY 1 desc </code></pre> http://stackoverflow.com/questions/1538148/sql-server-varchar10/1538161#1538161 4 Answer by Mladen Prajdic for SQL Server VARCHAR(10) Mladen Prajdic 2009-10-08T14:25:19Z 2009-10-08T14:25:19Z <p>probably it's just a bug in the designer.</p> http://stackoverflow.com/questions/1406448/how-to-programmatically-move-files-into-a-webdav-directory/1528765#1528765 0 Answer by Mladen Prajdic for How to programmatically move files into a WebDAV directory Mladen Prajdic 2009-10-06T23:55:41Z 2009-10-06T23:55:41Z <p>you could use the <a href="http://msdn.microsoft.com/en-us/library/aa142722%28EXCHG.65%29.aspx" rel="nofollow">BMOVE Method</a> </p> http://stackoverflow.com/questions/1411830/how-to-find-a-value-between-ranges-in-sql-server/1411913#1411913 0 Answer by Mladen Prajdic for how to find a value between ranges in sql server Mladen Prajdic 2009-09-11T16:16:36Z 2009-09-11T16:16:36Z <p>a quick blind shot:</p> <pre><code>declare @lab int select top 1 * from yourTable where startingslab &gt;= @lab order by startingslab asc </code></pre> http://stackoverflow.com/questions/1394603/getting-an-average-from-subquery-values-or-another-aggregate-function-in-sql-serv/1394634#1394634 2 Answer by Mladen Prajdic for Getting an average from subquery values or another aggregate function in SQL Server Mladen Prajdic 2009-09-08T15:24:36Z 2009-09-08T15:24:36Z <p>in your second attempt you're missing a ) and an alias:</p> <pre><code>SELECT AVG(pageCount) as AvgPageCount FROM ( SELECT COUNT(ActionName) AS pageCount FROM tbl_22_Benchmark WHERE DATEPART(dw,CreationDate)&gt;1 AND DATEPART(dw,CreationDate) ) t </code></pre> http://stackoverflow.com/questions/1393951/what-is-the-best-way-to-create-and-populate-a-numbers-table/1394093#1394093 2 Answer by Mladen Prajdic for What is the best way to create and populate a numbers table? Mladen Prajdic 2009-09-08T13:39:38Z 2009-09-08T13:39:38Z <p>i use this which is fast as hell:</p> <pre><code>insert into Numbers(N) select top 1000000 row_number() over(order by t1.number) as N from master..spt_values t1 cross join master..spt_values t2 </code></pre> http://stackoverflow.com/questions/1368354/excessive-reserved-space-on-sql-server/1368450#1368450 0 Answer by Mladen Prajdic for Excessive reserved space on SQL Server Mladen Prajdic 2009-09-02T15:37:12Z 2009-09-02T15:37:12Z <p>what you could do is take a full db backup, reindex the db, incrementaly shrink it, then reindex it again. that way you'll have the db in it's current size.</p> <p>also you should move your logging tables to another table.</p> http://stackoverflow.com/questions/1366408/sql-update-varchar-to-date-error/1366421#1366421 0 Answer by Mladen Prajdic for SQL Update varchar to date error Mladen Prajdic 2009-09-02T08:20:24Z 2009-09-02T08:20:24Z <p>insert the date in yyyyMMdd format or use parameters and you won't have this problem. or do one of the following</p> <pre><code>SET DATEFORMAT DMY SET DATEFORMAT MDY SET DATEFORMAT YMD SET DATEFORMAT YDM </code></pre> http://stackoverflow.com/questions/1887209/the-row-no-in-query-output/1887220#1887220 Comment by Mladen Prajdic on the row no in query output Mladen Prajdic 2009-12-11T10:43:16Z 2009-12-11T10:43:16Z lol! yeah i've had a lot of practice with weirdly worded questions in the past :) http://stackoverflow.com/questions/1811077/creating-sql-server-2000-database-using-sql-server-2008/1811088#1811088 Comment by Mladen Prajdic on Creating SQL Server 2000 database using SQL Server 2008. Mladen Prajdic 2009-12-02T10:29:23Z 2009-12-02T10:29:23Z ah. ok i've edited it a bit. thanx. http://stackoverflow.com/questions/1811077/creating-sql-server-2000-database-using-sql-server-2008/1811088#1811088 Comment by Mladen Prajdic on Creating SQL Server 2000 database using SQL Server 2008. Mladen Prajdic 2009-11-30T10:40:07Z 2009-11-30T10:40:07Z what part of my statement is wrong exactly? http://stackoverflow.com/questions/1808766/begin-try-catch-on-sql-server-2005-how-to-send-the-errorstuff-to-the-calling-pa/1808818#1808818 Comment by Mladen Prajdic on begin try catch on sql server 2005, how to send the ERROR_stuff to the calling parent? Mladen Prajdic 2009-11-27T13:59:21Z 2009-11-27T13:59:21Z you could put those values directly into your custom error message, or you could populate a custom errors table with this info and read from it in the parent. http://stackoverflow.com/questions/1808754/sql-query-based-upon-object-names-stored-within-a-table-itself/1808823#1808823 Comment by Mladen Prajdic on SQL query based upon object names stored within a table itself Mladen Prajdic 2009-11-27T13:55:50Z 2009-11-27T13:55:50Z reflection for sql is in the form of information_schema views. you can use those with dynamic sql to get what you need but that's not really a good idea. http://stackoverflow.com/questions/1679496/sql-union-problem Comment by Mladen Prajdic on sql union problem Mladen Prajdic 2009-11-05T10:55:48Z 2009-11-05T10:55:48Z for the love of set based processing... you don't need a while loop for this! http://stackoverflow.com/questions/1566300/sql-server-express-2005-ambiguous-column-name-problem Comment by Mladen Prajdic on SQL Server Express 2005 Ambiguous column name problem Mladen Prajdic 2009-10-14T14:22:44Z 2009-10-14T14:22:44Z blind shot but you most likely have a wrongly computed column in there. http://stackoverflow.com/questions/1490433/performing-multiplication-in-sql-serverset-based-approach/1490481#1490481 Comment by Mladen Prajdic on Performing multiplication in SQL SERVER(SET BASED APPROACH) Mladen Prajdic 2009-09-29T11:43:39Z 2009-09-29T11:43:39Z note that for large sets this method will introduce rounding errors. you might try the clr solution instead. it is slower but accurate. i compared the 2 here: <a href="http://weblogs.sqlteam.com/mladenp/archive/2007/02/12/60088.aspx" rel="nofollow">weblogs.sqlteam.com/mladenp/archive/&hellip;</a> http://stackoverflow.com/questions/1459738/retrieving-two-values-from-a-stored-procedure Comment by Mladen Prajdic on Retrieving Two Values from a Stored Procedure Mladen Prajdic 2009-09-22T12:28:47Z 2009-09-22T12:28:47Z i have to agree with Welbog 110%. This is a VERY bad design! this will come to bite you later on. http://stackoverflow.com/questions/1341948/sql-server-stored-procedure-store-return-value Comment by Mladen Prajdic on SQL Server Stored Procedure store return value Mladen Prajdic 2009-08-27T15:49:54Z 2009-08-27T15:49:54Z you'll have to show us more code since your question isn't clear. http://stackoverflow.com/questions/1016343/how-to-connect-a-new-query-script-with-ssms-add-in/1018883#1018883 Comment by Mladen Prajdic on How to connect a new query script with SSMS add-in? Mladen Prajdic 2009-08-16T13:41:46Z 2009-08-16T13:41:46Z i'm guessing they'll add extensibility for the version after 2008 R2. but that's just my guess. i have no info that'd support that claim. http://stackoverflow.com/questions/1201216/filter-the-result-set-of-a-stored-proc-using-a-where-clause/1201233#1201233 Comment by Mladen Prajdic on Filter the result set of a stored proc using a where clause Mladen Prajdic 2009-08-02T12:54:34Z 2009-08-02T12:54:34Z that is completely true. i've assumed that the OP has a situation where he doesn't always know the exact output of a stored procedure. if you do know that then the declare table first and insert into from sproc is a great solution. if not then my suggestion is the only viable way. http://stackoverflow.com/questions/1208228/advanced-search-using-checkboxlist/1208324#1208324 Comment by Mladen Prajdic on Advanced Search using CheckboxList Mladen Prajdic 2009-07-30T18:13:01Z 2009-07-30T18:13:01Z you should use parameteres because this way you're opened to SQL injection attacks. http://stackoverflow.com/questions/1205621/whats-the-most-widely-used-documentation-tool-for-c/1205630#1205630 Comment by Mladen Prajdic on Whats the most widely used documentation tool for C#? Mladen Prajdic 2009-07-30T10:09:59Z 2009-07-30T10:09:59Z yeah he posted it like 3 seconds before i did :) http://stackoverflow.com/questions/1203038/prevent-a-stored-procedure-from-being-executed-twice-at-the-same-time/1203050#1203050 Comment by Mladen Prajdic on Prevent a Stored Procedure from being executed twice at the same time Mladen Prajdic 2009-07-29T21:17:02Z 2009-07-29T21:17:02Z i can't see how this would help in any way. can you elaborate more?