User Mladen Prajdic - Stack Overflowmost recent 30 from stackoverflow.com2009-12-17T12:13:42Zhttp://stackoverflow.com/feeds/user/31345http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1906089/what-is-black-box-testing-and-white-box-testing/1906097#19060971Answer by Mladen Prajdic for What is black box testing and white box testingMladen Prajdic2009-12-15T08:59:39Z2009-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#18885650Answer by Mladen Prajdic for How to select records from last 24 hours using SQL?Mladen Prajdic2009-12-11T14:51:57Z2009-12-11T14:51:57Z<pre><code>select ...
from ...
where YourDateColumn >= getdate()-1
</code></pre>
http://stackoverflow.com/questions/1888496/what-do-you-use-for-organizing-sql-snippets/1888554#18885540Answer by Mladen Prajdic for What do you use for organizing SQL snippets?Mladen Prajdic2009-12-11T14:50:38Z2009-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#18872360Answer by Mladen Prajdic for SqlBulkCopy failing with String conversion issueMladen Prajdic2009-12-11T10:41:46Z2009-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#18872200Answer by Mladen Prajdic for the row no in query outputMladen Prajdic2009-12-11T10:38:01Z2009-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#18334520Answer by Mladen Prajdic for Random playlist algorithm Mladen Prajdic2009-12-02T15:02:04Z2009-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<int> RandomIndexes(int startIndexInclusive, int endIndexInclusive)
{
if (endIndexInclusive < startIndexInclusive)
throw new Exception("endIndex must be equal or higher than startIndex");
List<int> originalList = new List<int>(endIndexInclusive - startIndexInclusive);
for (int i = startIndexInclusive; i <= 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#18110883Answer by Mladen Prajdic for Creating SQL Server 2000 database using SQL Server 2008.Mladen Prajdic2009-11-28T00:13:12Z2009-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#18259190Answer by Mladen Prajdic for SQL Insert Script Generator with Dependency TrackertMladen Prajdic2009-12-01T12:31:47Z2009-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#18206330Answer by Mladen Prajdic for Deserializing an xml stream with invalid valuesMladen Prajdic2009-11-30T15:51:30Z2009-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#18197541Answer by Mladen Prajdic for neural network framework Mladen Prajdic2009-11-30T13:14:33Z2009-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#18191230Answer 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 Prajdic2009-11-30T10:57:45Z2009-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#18191780Answer by Mladen Prajdic for SQL Server: How to tell if a database is a system database?Mladen Prajdic2009-11-30T11:09:55Z2009-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#18191341Answer by Mladen Prajdic for How to confirm SQL injectionMladen Prajdic2009-11-30T10:59:41Z2009-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#18088080Answer by Mladen Prajdic for error executing sql server queryMladen Prajdic2009-11-27T13:34:17Z2009-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#18088230Answer by Mladen Prajdic for SQL query based upon object names stored within a table itselfMladen Prajdic2009-11-27T13:36:54Z2009-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#18088180Answer by Mladen Prajdic for begin try catch on sql server 2005, how to send the ERROR_stuff to the calling parent?Mladen Prajdic2009-11-27T13:35:54Z2009-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#17893351Answer by Mladen Prajdic for SQL-Server infinite loopMladen Prajdic2009-11-24T11:00:34Z2009-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#16872871Answer by Mladen Prajdic for can we pass parameter to a view in sql?Mladen Prajdic2009-11-06T12:32:55Z2009-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#16795570Answer by Mladen Prajdic for sql union problemMladen Prajdic2009-11-05T10:07:15Z2009-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 < @n
</code></pre>
http://stackoverflow.com/questions/1673916/sql-query-for-retrieving-connecting-trains/1674184#16741840Answer by Mladen Prajdic for SQL query for retrieving connecting trainsMladen Prajdic2009-11-04T14:42:51Z2009-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#15675630Answer by Mladen Prajdic for T-SQL query on huge table running slow depending on join conditionsMladen Prajdic2009-10-14T16:46:49Z2009-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 > 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#15666193Answer by Mladen Prajdic for How to subselect in where statement in SQL Server CE?Mladen Prajdic2009-10-14T14:25:01Z2009-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#15382671Answer by Mladen Prajdic for MSSQL: Does the Order By clause recalculate the value?Mladen Prajdic2009-10-08T14:41:19Z2009-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#15381614Answer by Mladen Prajdic for SQL Server VARCHAR(10)Mladen Prajdic2009-10-08T14:25:19Z2009-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#15287650Answer by Mladen Prajdic for How to programmatically move files into a WebDAV directoryMladen Prajdic2009-10-06T23:55:41Z2009-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#14119130Answer by Mladen Prajdic for how to find a value between ranges in sql serverMladen Prajdic2009-09-11T16:16:36Z2009-09-11T16:16:36Z<p>a quick blind shot:</p>
<pre><code>declare @lab int
select top 1 *
from yourTable
where startingslab >= @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#13946342Answer by Mladen Prajdic for Getting an average from subquery values or another aggregate function in SQL Server Mladen Prajdic2009-09-08T15:24:36Z2009-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)>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#13940932Answer by Mladen Prajdic for What is the best way to create and populate a numbers table?Mladen Prajdic2009-09-08T13:39:38Z2009-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#13684500Answer by Mladen Prajdic for Excessive reserved space on SQL ServerMladen Prajdic2009-09-02T15:37:12Z2009-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#13664210Answer by Mladen Prajdic for SQL Update varchar to date errorMladen Prajdic2009-09-02T08:20:24Z2009-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#1887220Comment by Mladen Prajdic on the row no in query outputMladen Prajdic2009-12-11T10:43:16Z2009-12-11T10:43:16Zlol! 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#1811088Comment by Mladen Prajdic on Creating SQL Server 2000 database using SQL Server 2008.Mladen Prajdic2009-12-02T10:29:23Z2009-12-02T10:29:23Zah. ok i've edited it a bit. thanx.http://stackoverflow.com/questions/1811077/creating-sql-server-2000-database-using-sql-server-2008/1811088#1811088Comment by Mladen Prajdic on Creating SQL Server 2000 database using SQL Server 2008.Mladen Prajdic2009-11-30T10:40:07Z2009-11-30T10:40:07Zwhat 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#1808818Comment by Mladen Prajdic on begin try catch on sql server 2005, how to send the ERROR_stuff to the calling parent?Mladen Prajdic2009-11-27T13:59:21Z2009-11-27T13:59:21Zyou 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#1808823Comment by Mladen Prajdic on SQL query based upon object names stored within a table itselfMladen Prajdic2009-11-27T13:55:50Z2009-11-27T13:55:50Zreflection 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-problemComment by Mladen Prajdic on sql union problemMladen Prajdic2009-11-05T10:55:48Z2009-11-05T10:55:48Zfor 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-problemComment by Mladen Prajdic on SQL Server Express 2005 Ambiguous column name problemMladen Prajdic2009-10-14T14:22:44Z2009-10-14T14:22:44Zblind 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#1490481Comment by Mladen Prajdic on Performing multiplication in SQL SERVER(SET BASED APPROACH)Mladen Prajdic2009-09-29T11:43:39Z2009-09-29T11:43:39Znote 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/…</a>http://stackoverflow.com/questions/1459738/retrieving-two-values-from-a-stored-procedureComment by Mladen Prajdic on Retrieving Two Values from a Stored ProcedureMladen Prajdic2009-09-22T12:28:47Z2009-09-22T12:28:47Zi 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-valueComment by Mladen Prajdic on SQL Server Stored Procedure store return valueMladen Prajdic2009-08-27T15:49:54Z2009-08-27T15:49:54Zyou'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#1018883Comment by Mladen Prajdic on How to connect a new query script with SSMS add-in?Mladen Prajdic2009-08-16T13:41:46Z2009-08-16T13:41:46Zi'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#1201233Comment by Mladen Prajdic on Filter the result set of a stored proc using a where clauseMladen Prajdic2009-08-02T12:54:34Z2009-08-02T12:54:34Zthat 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#1208324Comment by Mladen Prajdic on Advanced Search using CheckboxListMladen Prajdic2009-07-30T18:13:01Z2009-07-30T18:13:01Zyou 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#1205630Comment by Mladen Prajdic on Whats the most widely used documentation tool for C#?Mladen Prajdic2009-07-30T10:09:59Z2009-07-30T10:09:59Zyeah 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#1203050Comment by Mladen Prajdic on Prevent a Stored Procedure from being executed twice at the same timeMladen Prajdic2009-07-29T21:17:02Z2009-07-29T21:17:02Zi can't see how this would help in any way. can you elaborate more?