Mladen Prajdic

4,081
reputation
411 views

Registered User

name Mladen Prajdic
member for 1 year
seen 1 hour ago
website
location Slovenia
age 29
geek with a touch of nerd :))

Author of the SSMS add-in SSMS Tools Pack.

You can also follow me on Twitter
2h
answered Where does the Microsoft Ribbon Framework lie?
2h
answered Access front-end, SQL Server back-end skipping autonumber IDs
10h
accepted SQL Insert Script Generator with Dependency Trackert
Dec
18
comment Improving performance on a view with a LOT of joins…
do you have any idea how much space will this take? making this view persisted is not a good idea.
Dec
17
answered Improving performance on a view with a LOT of joins…
Dec
17
answered SQL Output contents of a table to string
Dec
17
answered How to get the names of the most expensive SPs in SQL Server 2005/2008
Dec
17
accepted How to put text into circle in WPF XAML template?
Dec
17
answered How to put text into circle in WPF XAML template?
Dec
17
answered Using Database storage for uses other than offline apps
Dec
15
answered What is black box testing and white box testing
Dec
11
answered How to select records from last 24 hours using SQL?
Dec
11
answered What do you use for organizing SQL snippets?
Dec
11
comment the row no in query output
lol! yeah i've had a lot of practice with weirdly worded questions in the past :)
Dec
11
answered SqlBulkCopy failing with String conversion issue
Dec
11
answered the row no in query output
Dec
7
accepted error executing sql server query
Dec
2
answered Random playlist algorithm
Dec
2
comment Creating SQL Server 2000 database using SQL Server 2008.
ah. ok i've edited it a bit. thanx.
Dec
2
revised Creating SQL Server 2000 database using SQL Server 2008.
added 16 characters in body
Dec
1
answered SQL Insert Script Generator with Dependency Trackert
Nov
30
answered Deserializing an xml stream with invalid values
Nov
30
accepted neural network framework
Nov
30
answered neural network framework
Nov
30
answered SQL Server: How to tell if a database is a system database?
Nov
30
answered How to confirm SQL injection
Nov
30
answered The query has been canceled because the estimated cost of this query (1660) exceeds the configured threshold of 1500. Contact the system administrator.
Nov
30
comment Creating SQL Server 2000 database using SQL Server 2008.
what part of my statement is wrong exactly?
Nov
28
answered Creating SQL Server 2000 database using SQL Server 2008.
Nov
27
accepted begin try catch on sql server 2005, how to send the ERROR_stuff to the calling parent?
Nov
27
comment begin try catch on sql server 2005, how to send the ERROR_stuff to the calling parent?
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.
Nov
27
accepted SQL query based upon object names stored within a table itself
Nov
27
comment SQL query based upon object names stored within a table itself
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.
Nov
27
answered SQL query based upon object names stored within a table itself
Nov
27
answered begin try catch on sql server 2005, how to send the ERROR_stuff to the calling parent?
Nov
27
answered error executing sql server query
Nov
24
answered SQL-Server infinite loop
Nov
6
answered can we pass parameter to a view in sql?
Nov
5
comment sql union problem
for the love of set based processing... you don't need a while loop for this!
Nov
5
answered sql union problem
Nov
4
accepted Using Change Data Capture for Small Desktop Applications?
Nov
4
answered SQL query for retrieving connecting trains
Oct
25
awarded  Yearling
Oct
14
answered T-SQL query on huge table running slow depending on join conditions
Oct
14
accepted How to subselect in where statement in SQL Server CE?
Oct
14
answered How to subselect in where statement in SQL Server CE?
Oct
14
comment SQL Server Express 2005 Ambiguous column name problem
blind shot but you most likely have a wrongly computed column in there.
Oct
8
accepted MSSQL: Does the Order By clause recalculate the value?
Oct
8
answered MSSQL: Does the Order By clause recalculate the value?
Sep
29
comment Performing multiplication in SQL SERVER(SET BASED APPROACH)
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: weblogs.sqlteam.com/mladenp/archive/…