kristof

3,709
Reputation
401 views

Registered User

Name kristof
Member for 1 year
Seen 12 hours ago
Website
Location IE
Age
2d
revised How to expand rows from count in tsql only
added no limit option for maxrecursion
2d
comment Creating a range of numbers in an sql subquery
true, my bad somehow I didn't notice that when OPTION (MAXRECURSION 0) is specified there is no limit on the recursions. Thanks
2d
revised Creating a range of numbers in an sql subquery
edited tags
2d
comment Creating a range of numbers in an sql subquery
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 msdn.microsoft.com/en-us/library/…
Nov
26
revised Getting debug output in SQL Server Managment Studio
added 206 characters in body
Nov
26
accepted Getting debug output in SQL Server Managment Studio
Nov
26
answered Getting debug output in SQL Server Managment Studio
Nov
26
answered javascript - know if a link has already been opened.
Nov
25
answered How can my server securely authenticate iPhone in-app purchase?
Nov
25
comment How can my server securely authenticate iPhone in-app purchase?
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.
Nov
20
comment 2147217833 String or binary data would be truncated
could you add the stored proc code as well?
Nov
20
comment 2147217833 String or binary data would be truncated
is there any reason for casting date to string before assigning to datetime type? why not just do objComm.Parameters("@ReviewDate") = dReviewDate objComm.Parameters("@DateReviewed") = Date
Nov
19
accepted Round to nearest 5 in SQL Server
Nov
19
comment Using JOINS in MySQL
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
Nov
18
comment How do i merge two or more rows based on their foreign key?
could 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.
Nov
13
revised How to best implement a 1:1 relationship in a RDBMS?
added 389 characters in body
Nov
13
answered How to best implement a 1:1 relationship in a RDBMS?
Nov
13
revised Round to nearest 5 in SQL Server
added 392 characters in body; deleted 7 characters in body
Nov
12
answered Database Change Management using hand generated scripts
Nov
9
answered Round to nearest 5 in SQL Server
Nov
9
comment select value from sqlserver problem
thanks for the comment bobince, updated my answer to add the code example.
Nov
9
revised select value from sqlserver problem
typo
Nov
9
comment SQL join optimalization (get rid of UNION)
I'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 ago
Nov
9
comment SQL join optimalization (get rid of UNION)
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
Nov
9
revised select value from sqlserver problem
added 234 characters in body; edited body; added 48 characters in body
Nov
9
answered select value from sqlserver problem
Oct
30
accepted change default date time format on a single database in SQL Server
Oct
29
comment How do you truncate all tables in a database using TSQL?
Thanks Raghav, corrected now.
Oct
29
revised How do you truncate all tables in a database using TSQL?
updated typo after comments from Raghav Khunger
Oct
19
answered T-SQL: Looping through an array of known values
Oct
13
comment Are there any big names running on the cloud?
It looks like is more about using Google Apps (Docs, Email Spreadsheets etc) than GAE, but it is good to know anyway
Oct
7
revised Bidirectional replication update record problem
added 138 characters in body
Oct
7
answered Bidirectional replication update record problem
Oct
2
awarded  Popular Question
Oct
1
comment Favourite Open Source Google App Engine apps (Java or Python)
That may be useful as a reference groups.google.com/group/google-appengine/…
Sep
29
answered SQL Server - SELECT FROM stored procedure
Sep
29
revised How do I shrink the transaction log on MS SQL 2000 databases?
deleted 7 characters in body
Sep
29
revised How do I shrink the transaction log on MS SQL 2000 databases?
added 198 characters in body; added 203 characters in body
Sep
29
awarded  Disciplined
Sep
27
awarded  Popular Question
Sep
21
awarded  Notable Question
Sep
18
comment Query to list number of records in each table in a database
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
Sep
18
comment Query to list number of records in each table in a database
thanks marc_s, that should indeed be easier to manage
Sep
18
answered Query to list number of records in each table in a database
Sep
18
asked Query to list number of records in each table in a database
Sep
17
comment How to get SQL Server to return a default of 0, if no rows exist?
I would not make sense to expect 0 when asking about itemId that does not exist at all like 5 ( no rows returned then)as opposed to ItemId not present in any orders (0 returned)
Sep
17
comment How to get SQL Server to return a default of 0, if no rows exist?
+1 actually looking again at your solution it seems that it should work for this problem
Sep
17
comment How to get SQL Server to return a default of 0, if no rows exist?
when you e.g. SET @ItemIdTest = 5 (non existing itemId) it will return empty rows
Sep
17
revised How do I drop all foreign-key constraints on a table in Sql Server 2000?
added 229 characters in body; added 8 characters in body
Sep
17
revised How do I drop all foreign-key constraints on a table in Sql Server 2000?
added 784 characters in body; added 254 characters in body