Viewing 15 posts - 1 through 15 (of 42 total)
Hi,
Actually its not a "big" table with many columns. actually there are 20 columns. Problem is I need to follow SUMs all the time. but I need only monthly SUMs....
October 21, 2015 at 9:53 am
great, thanks.
have a great day.
October 17, 2014 at 5:58 am
BankResult is not unique. and I use it in every query.
select ... where BankResult <> '-' or ... BankResult='APPROVED' or ....BankResult='DECLINED'.... there are 6 or more BankResult types which are...
October 17, 2014 at 5:35 am
yeap, as I said there's too much rumors about that. thanks for your answer.
By the way, as you answer my questions, here's the another related one:
what about SUM functions like...
October 3, 2014 at 10:53 am
puff, my friend,
my question is does it cause any problems on sql server or not. every read request locks the row.
if using NOLOCK option causes no problem then I...
October 3, 2014 at 8:21 am
no no, you got me wrong. my queries will al be same like:
SELECT Parameter1 FROM Companies WHERE ID = 25
only one or two fields at a time with ID specified....
October 3, 2014 at 7:20 am
actually there were index problems as I mentioned and also too many SUM(total) like operations that locks entire table and I changed them. As I said there are no...
October 3, 2014 at 6:37 am
yeah, its merge replication. though I had difficulties about ID column, I made it. but if you make mass updates in database (which I need to) and meanwhile users continues...
January 9, 2014 at 4:43 am
dear friends,
I'm just confused about varchar and nvarchar types. I learned that nvarchar holds unicode character sets and varchar cannnot. varchar doubles the size. thats fine.
What I confused about is...
August 21, 2013 at 12:25 pm
my friend, thats exactly what I need.
you helped me so much. thanks..
June 30, 2013 at 4:06 am
I think this is the code.
merge into revenues as R
using (
select companyid, amount, trndate from transactions where ID=2
) T
ON (R.companyid = T.companyid and r.trnmonth = ...
May 7, 2013 at 12:57 am
I have no knowledge about MERGE I'll google it. meantime, if you write down some sample 😀
May 7, 2013 at 12:26 am
okay, not related with this topic but if I use ms azure for hosting instead of renting my own physical one, would I guarantee that my sql data will always...
January 15, 2013 at 2:44 am
opc.three's solution looks cool. I'm still testing it.
Actually I found many solutions about that. but I really want to be sure that any given solution works perfectly under heavy load....
January 1, 2013 at 7:46 am
I found filling a dataset programmatically more easy. My concern was sql performance vs aspnet performance but this way is more easy.
I thank you everyone for their ideas.
to Eugene Elutin:...
November 14, 2012 at 3:04 pm
Viewing 15 posts - 1 through 15 (of 42 total)