Viewing 15 posts - 151 through 165 (of 202 total)
I recently posted about implimenting a zipcode to city state decoder and ip 2 lookup decoder. Well when i did i ended up createing the ip table which had almost...
March 29, 2012 at 6:33 am
Sounds like they're using entity framework and only use the views. Well another option is to create a table and populate it w/ the data u want then select from...
March 28, 2012 at 6:55 am
Thanks everyone
March 23, 2012 at 8:19 am
anyone have an opinion about http://www.zip-codes.com/ ?
March 23, 2012 at 7:45 am
If parametized dynamic sql will result in more cache hits then why would anyone write non parameterized dynamic sql?
March 22, 2012 at 6:23 am
picky picky. Your right. That's my shorthand and i really shouldn't assume his column data will never have a -1 as it's value.
March 21, 2012 at 1:29 pm
just read this "sp_executesql can be used instead of stored procedures to execute a Transact-SQL statement many times when the change in parameter values to the statement is the only...
March 21, 2012 at 1:22 pm
i use something called sql beautifier. i think it was like 20 dollars. It's very useful and formats sql into a standard readable manner. U can also manip[ulate the way...
March 20, 2012 at 3:00 pm
or wrap in sinulls
also only the records who need to be update...removed left join
UPDATE t1 SET field1 = t2.field1
FROM Table1 t1 JOIN Table2 t2 ON
t2.id1 = t1.id1
AND t2.id2 = t1.id2...
March 20, 2012 at 2:53 pm
also only the records who need to be update...removed left join
UPDATE t1 SET field1 = t2.field1
FROM Table1 t1 JOIN Table2 t2 ON
t2.id1 = t1.id1
AND t2.id2 = t1.id2
where t1.field1...
March 20, 2012 at 2:32 pm
Cold Coffee. Nice work. I thought about this last night and had a fresh solution ready to bang out today. I wasnt going to use CTE however probably should have....
March 15, 2012 at 6:33 am
going to try and verbally explain this so bare w/ me. For each WebCategoryId i have multiple WebSubCategoryIds who have multiple WebOptionNames.
When a new category and sub category is found...
March 14, 2012 at 2:35 pm
i've added the desired output as an excel. It appears not only was my formatting jacked up but my output was incorrect. The excel copy is correct. thanks guys
March 14, 2012 at 2:31 pm
that didnt come out formatted like i had it. i need to fix it first.
March 14, 2012 at 2:18 pm
you can also write vba i think it's called which is code behind the actual excel file to create a connection and insert the records into db. Probably wont help...
March 9, 2012 at 12:47 pm
Viewing 15 posts - 151 through 165 (of 202 total)