07.23.07
Posted in Programming at 10:45 am by tom
I was working on some tables today and found the need to drop all the foreign key constraints. There is no easy function in the manager so I whipped up this little bit of SQL that will create the commands needed to do this. This will work in MS Sql Server 2000 and 2005
SELECT ‘ALTER TABLE ‘ + TABLE_SCHEMA + ‘.’ + TABLE_NAME +
‘ DROP CONSTRAINT ‘ + CONSTRAINT_NAME
FROM information_schema.table_constraints
WHERE CONSTRAINT_TYPE = ‘FOREIGN KEY’
Permalink
04.24.06
Posted in Programming at 2:23 pm by tom
I like this observation, makes me want to compare his description with my current work enviroment. Suffice it to say that I am now treated as a programmer but that has not always been the case. Enough said.
Permalink
11.24.04
Posted in Programming at 3:08 pm by tom
This looks like a very interesting site about software development: Joel on Software
Permalink
07.07.04
Posted in Programming at 3:39 pm by tom
Paging tip
Default Button
ASP.Net not working after install
Read the rest of this entry »
Permalink
04.09.04
Posted in Programming at 7:58 pm by tom
PBS | I, Cringely April 8, 2004 Why we will have to live with Microsoft for a while longer.
Read the rest of this entry »
Permalink
06.17.03
Posted in Programming at 9:15 am by tom
This is a bit dated (written in 1982) but a lot of concepts still apply today and any real programmers still out there can get a real kick out of this.
I am posting this here because it would be a damn shame for it to be lost because someone takes down their site.
This still needs some editing to get it looking just right but I am putting it up here now anyway.
Read the rest of this entry »
Permalink
04.28.03
Posted in Programming at 12:03 pm by tom
I could go on here for a while if really tried but I won’t. My main point here is how MS has said all along the .Net is to be this great open architecture, everything can play together and won’t it be great. Turns out they were lying like a rug.
First they patent the CLR so that no other group can implement their standard without thier blessing (and payment). This will like kill off the mono project. They don’t mind and will likely port the CLR themselves to mac, freebsd, solaris but they expressly forbid it ever going to Linux. For being so dominant they are certainly very paranoid.
Second, I am told their web services are moving to where they will only to web services that are based on windows.
How is this better than Java I ask?
I expect more to come on this subject.
(If you want to comment on this I’m afraid it had to be turned off because the bloody spammers keep putting crap on this entry.)
Permalink
Posted in Programming at 11:58 am by tom
Taking a C# class this week. Looking to be interesting.
Read the rest of this entry »
Permalink