Search Results

1
vote

What is the easiest way using T-SQL / MS-SQL to append a string to existing table cells?

I wanted to adjust David B's "Life Lesson". I think it should be "never use char for variable length string values" -> There are valid uses for the char data type, just not as many as some people t …
0
votes

Copying relational data from database to database

Are you clearing the destination tables each time and then starting again? That will make a big difference to the solution you need to implement. If you are doing a complete re-import each time the …
0
votes

Disable (Politely) a website when the sql server is offline

A slightly more elegant version of the DB check on every page would be to do the check in the Global.asax file or to create a master page that all the other pages inherit from. The suggesti …
0
votes

Disable (Politely) a website when the sql server is offline

James code forgets to close the connection, should probably be: try { conn.Open(); } catch(Exception ex) { Session["DBException"] = ex; Response.Redirect("Maintenance.aspx" …
0
votes

Copying relational data from database to database

If you are adding each time then you may need to keep a permanent table to track the relationship between source database primary keys and destination database primary keys (at least for the parent …
4
votes

SQL coding style guide

I am not too fussed about caps, although I admit I do make my keyword commands (select, from, where insert) capitals. I can be very anal about tabbing and line breaks though. My preferred style is …
0
votes

Modeling Geographic Locations in an Relational Database.

I agree with the other posts that you need to be very careful here about your requirements. Location can become a tricky issue and this is why GIS systems are so complicted. If you are sure …