Viewing 15 posts - 10,276 through 10,290 (of 15,381 total)
sdhanpaul (10/22/2012)
I read about 100 articles comparing different types of running sum...of which:
clr is the best way to do it but i cant get...
October 22, 2012 at 1:10 pm
dj1202 (10/22/2012)
October 22, 2012 at 1:07 pm
Like this?
create table #tblDoc
(
FromSender varchar(150)
)
insert #tblDoc
select 'John Doe1 <John.Doe1@abcd.com>' union all
select 'John Doe2 <John.Doe2@abcd.com>' union all
select 'John Doe3 <John.Doe3@abcd.com>' union all
select 'Some longer name <LongEmailAddressHere@LongDomainName.com>' union all
select 'Short <e@e.e>'
SELECT substring(FromSender,...
October 22, 2012 at 1:04 pm
The running total problem is a difficult one in sql server. A cursor is one way to do this, however it is incredibly slow for this type of thing. Take...
October 22, 2012 at 12:43 pm
ksharpe (10/22/2012)
ok, give me a few minutes and I'll see if I can create the contsupp table from your examples.
I'll be right back - I'll try it out...
October 22, 2012 at 12:28 pm
ksharpe (10/22/2012)
Great, thanks. I`ll figure it out as soon as possible.kim
I think this is what you mean by 2 of the tables. The other table(s) is still pretty unclear what...
October 22, 2012 at 12:22 pm
Lowell (10/22/2012)
tipping my hat to Sean, we travel in the same circles so often!Thanks for the honorable mention, my friend!
We do seem to end up on the same threads pretty...
October 22, 2012 at 12:10 pm
ksharpe (10/22/2012)
Thanks for your very prompt reply - you all are amazing. I recognize that you are volunteers and for those of us who rely on your generosity of...
October 22, 2012 at 12:08 pm
joseph.moffatt (10/22/2012)
The SQL below *seems* to work as expected. However, it takes an awful long time to run. I would appreciate any advice how to improve this. Should I...
October 22, 2012 at 12:06 pm
harri.reddy (10/22/2012)
they gave me some tables(approx 9) tables and field that they want to fecth only those field.
they all r master table.so do i need to make table that connect...
October 22, 2012 at 12:00 pm
I hope this makes it a little bit easier to see what it is I`m looking for.
Actually it really doesn't make it any easier. What would make it easier is...
October 22, 2012 at 11:55 am
monilps (10/22/2012)
Hi,I am looking for query where I want to search particular word in all rows all tables in particular database.
Thank you in advance !!!
This is a horribly...
October 22, 2012 at 11:49 am
harri.reddy (10/22/2012)
they gave me docs,which field they need and what lenght of data type.
my question is ,should i create logical /physical data model or start making table in sql server...
October 22, 2012 at 10:10 am
davdam8 (10/22/2012)
I got this:
...
ORDER BY CASE WHEN CARAC= 'None' THEN CARAC ELSE CARAC END DESC
The problem is for each PROJ I get 2 times the same...
October 22, 2012 at 9:59 am
naqib_bs (10/22/2012)
but I am member of administrator user therefore, it gives me...
October 22, 2012 at 9:53 am
Viewing 15 posts - 10,276 through 10,290 (of 15,381 total)