Viewing 15 posts - 4,261 through 4,275 (of 15,381 total)
So what they want is a custom application so that users with no technical ability can query the database. It must be fast because the current application is not fast...
June 30, 2014 at 9:33 am
Grant Fritchey (6/30/2014)
I have to say, this really sounds like interview questions. I'm only answering interview questions if I get the job.
GAH! Didn't even think about this being interview questions....
June 30, 2014 at 9:23 am
rquest7 (6/30/2014)
DBAs, urgent help please .1.what is the query , sql command to delete all table data in a database in SQL 2008 standard
Delete or truncate depending on your requirements.
2....
June 30, 2014 at 8:59 am
LoosinMaMind (6/30/2014)
I would like to have them showing as separate fields but there should never be more than 5 sets of...
June 30, 2014 at 8:41 am
SQLRNNR (6/30/2014)
Lynn Pettis (6/29/2014)
Koen Verbeeck (6/29/2014)
Lynn Pettis (6/28/2014)
June 30, 2014 at 8:39 am
Glad you found a working solution. Even more glad you are willing to see if somebody can come up with another approach to get rid of the cursor.
In this example...
June 30, 2014 at 7:42 am
patrickmcginnis59 10839 (6/27/2014)
Sean Lange (6/27/2014)
In a windows application this is performed inside the compiled code and the result is compared to sql.
This is actually the insecure part I was...
June 27, 2014 at 2:52 pm
Loner (6/27/2014)
SELECT a.userid, u.NAME
FROM ( SELECT a.userid
FROM (SELECT u.*,
ROW_NUMBER() OVER(PARTITION BY u.userid ORDER BY u.colorid ) AS Row
FROM UserColor u )...
June 27, 2014 at 1:40 pm
Here is one way. This was a very quick stab at this but it works.
select u.Name, u.Userid
from MyUser u
join UserColor uc on uc.Userid = u.Userid
group by u.NAME, u.Userid
having COUNT(*) =...
June 27, 2014 at 12:52 pm
No the actual values are not sent to the client. The client passes UserName and password to the server. In a webapp this is all done on the webserver well...
June 27, 2014 at 12:34 pm
Dominic Gagné (6/27/2014)
cmdBatchNbPdsLbsZONE
817159644 1.55320031
817159652 9.09590031
817159679 ...
June 27, 2014 at 12:14 pm
Sarah Wagner (6/27/2014)
June 27, 2014 at 12:10 pm
atultiwari.eng06 (6/27/2014)
WHERE KNO in ('8789','8896','6963')AND KNO = 0
this will return empty records....
i want output
KNO
6963
hehe meant to put Amount = 0. Hopefully the query Jeff posted is close to what you...
June 27, 2014 at 11:59 am
atultiwari.eng06 (6/27/2014)
KNO Amount
8789 10
8896 15
6963 0
8959 30
8789 0
8896 0
6963 0
8959 0
select KNO from Consumer where...
June 27, 2014 at 10:30 am
peter.cox (6/27/2014)
but I need it any order, not just the order it came in, or the reverse, but any combination.and the variable could be up to say six words
You can...
June 27, 2014 at 10:11 am
Viewing 15 posts - 4,261 through 4,275 (of 15,381 total)