KM

10,436
Reputation
663 views

Registered User

Name KM
Member for 9 months
Seen yesterday
Website
Location
Age
1d
comment why this behaviour with int in SQL Server 2005
do not assign a variable the value within the IF EXISTS(... )
1d
comment why this behaviour with int in SQL Server 2005
use _IF EXISTS(SELECT Tracking_Id FROM DOCUMENT_TRACKING WHERE Secondary_Document_Id = @Secondary_Document_Id AND primary_Document_Id = @Primary_Document_Id) _
Dec
3
comment Do I really need to use “SET XACT_ABORT ON”?
ask this as a new question, not as an answer to an existing question.
Dec
1
comment Strategy for avoiding a common sql development error (misleading result on join bug)
name your columns better, if all your identities are "id" then you deserve this problem. Use descriptive and consistent column names: PatientID, WarehouseID, ItemID, etc. Also, create some nice ER diagrams.
Nov
23
comment Sql Server Ce 3.5 Identity insert
@Brian Wilkins, then do the same but create a view and not a procedure, you'll get the same error
Nov
17
accepted Is there a way to set a default precision for decimal calculations in SQL Server 2005?
Nov
12
comment SQL: How to get the id of values I just INSERTed?
there are known bugs with SCOPE_IDENTITY() in sql server 2005, not sure about 2008, the OUTPUT clause can return a set of IDs if necessary
Nov
5
comment SQL Performance using a COALESCE Function
ouch! LIKE '%CashFLow%' this will hurt the query. move it from the HAVING to the WHERE, it may help, since you eliminate the rows you don't want before you try to group them.
Nov
4
comment Give me an assignment in C
You are standing in an open field west of a white house, with a boarded front door. There is a small mailbox here. en.wikipedia.org/wiki/Zork_I
Oct
30
comment server side db programming: why?
+1, in my book, triggers are a band-aids. design and develop forward looking database tables and procedures, and then only use triggers as a last resort when you have to.
Oct
30
comment Why no love for SQL?
all the answers should be wiki too. it is just insane that questions and answers like these get so many up votes. I thought this was a technical forum? you can solve someone's problem by providing some difficult to write code and get one or two up votes, yet answer a question like this and get loads of up votes. that's really lame if you ask me.
Oct
29
comment Why no love for SQL?
should be a wiki
Oct
29
comment Why no love for SQL?
Joachim Sauer said SQL is not a terrible language, it just doesn't play too well with others To me, it does sounds like someone said it's SQLs fault
Oct
29
comment Why no love for SQL?
dealing with instances of objects in memory is quite different than the data that is physically stored in a database. there is more pain fixing poor designs, and possibly massive variations in performance based on "little things"
Oct
29
comment Why no love for SQL?
why is it SQL's fault that OO languages don't map well to it? When you use a service, conform to its interface or don't use it.
Oct
29
accepted how can I store date values partially?
Oct
28
comment TSQL using a wildcard in a where clause with dynamic sql
you don't need to loop to split a string into rows, see this:stackoverflow.com/questions/1456192/…
Oct
28
comment Error while exporting from ms sql to access
having code that is formatted a little better makes it easier to see what @astander points out in his answer. sql query analyser doesn't care if column names are duplicated, try SELECT 1 as A, 1 AS A, 1 AS A but if you are trying to create a new table in Access, I'll bet that it cares.
Oct
27
accepted How to query for rows along with their xml representation?
Oct
26
revised How to query for rows along with their xml representation?
edited tags; edited title
Oct
26
answered How to query for rows along with their xml representation?
Oct
26
answered SQL Server Where Clauses
Oct
22
accepted Would this be an appropriate situations for a cursor?
Oct
20
comment Writing a complex trigger
if you update the key how could you join to the other tables? ast.RowID = a.AppStatusRowID
Oct
20
comment Writing a complex trigger
I hope you are not updating a primary key, that is a bad idea.
Oct
20
comment SQL update value to highest date in table
@unknown (google), would have been nice to include that in the first place, lol
Oct
20
answered How to count rows that have the same values in two columns (SQL)?
Oct
20
comment Concatenating records in a single column without looping?
you can't use an order by when using this method. you can using FOR XML PATH, like in my answer. However FOR XML PATH is for SQL Server 2005 and up
Oct
20
answered Concatenating records in a single column without looping?
Oct
20
answered How to search with multiple criteria from a database with SQL?
Oct
20
revised tsql function split string
added 46 characters in body
Oct
19
accepted why can’t I access my CTE after I used it once?
Oct
19
comment why can’t I access my CTE after I used it once?
depending on the complexity of the CTE and the number of rows returned, an OUTPUT clause may perform significantly better than duplicating the CTE for the DELETE command. WHY reselect all those rows again, just save the PKs the first time you have them. Also, the UPDATE might make the CTE impossible to repeat. See my answer for an example of the OUTPUT clause.
Oct
19
answered why can’t I access my CTE after I used it once?
Oct
19
comment How do I sort a VARCHAR column in SQL server that contains words and numbers?
@rexem, the WITH is only to generate sample data for ORDER BY, it is not part of the actual solution here
Oct
19
answered How do I sort a VARCHAR column in SQL server that contains words and numbers?
Oct
19
revised SQL Grouping around gaps
added 10 characters in body
Oct
19
answered How do I run SQL queries on different databases dynamically?
Oct
19
comment How to set default null value in to a date field in sql server 2000?
@Adarsh, see my answer, null is null and not a particular date...
Oct
19
answered How to set default null value in to a date field in sql server 2000?
Oct
19
comment Get count of distinct groups in a single SQL query in Firebird 1.5?
@Milan Babuškov, that is why I said "this works on SQL Server". the fact that a simple standard SQL construct is not supported in Firebird version 1.5 shows the problem lies in the version the OP is using.
Oct
16
comment how to select columns as rows?
I have updated my answer with a SQL Server 2000 solution
Oct
16
revised how to select columns as rows?
added 489 characters in body
Oct
16
revised how to select columns as rows?
edited title
Oct
16
answered how to select columns as rows?
Oct
16
comment Can I loop through a table variable in T-SQL?
your code: DECLARE cursor1 CURSOR FOR @table1 OPEN cursor1 will not work. Cursors have to have a SELECT in their definition, like your second code example. If you do some tests, you will find that looping without using a cursor is faster than looping using a cursor.
Oct
16
comment how to concatenate n columns into one?
to loop without a cursor, see this: stackoverflow.com/questions/1578198/…
Oct
16
accepted Can I loop through a table variable in T-SQL?
Oct
16
awarded  Citizen Patrol
Oct
16
comment Can I loop through a table variable in T-SQL?
why select the max each time in the loop? As a result, you have to hit the table variable two times per iteration. You could remove the SELECT MAX() in the WHILE() if you capture the @@ROWCOUNT from the table varaible population, like I do in my answer.