Search Results

0
votes

One to One database relation?

I would suggest that you keep each record type in its own table. Player Logins are one type of record. Inventory is another. They should not share a table as most of the information isn't …
1
vote

Sql, selecting and updating

Going to the DB isn't so bad. If you aren't returning anything 'across the wire' then an update shouldn't do you too much damage and its only a few hundred thousand rows. What is your worry? …
1
vote

Convincing an IT Manager to allow SQL Server instead of Access

Licensing for one. I doubt he wants to have hundreds of Office licenses (one for each end user that connects to the site). SQL has licenses that allows multiple connects at the same time without …
1
vote

From a Query Window, can a Stored Procedure be opened into another Query Window?

You are trying to mix two technologies here. SQL and SQLSyntax The SQL Management Tool It is probably not possible to use TSQL to manipulate the Management S …
0
votes

Mistaken mass deletes and updates — design error?

But really the issue is how safe is your 'Live' data. Running untested scripts on a 'Live' database is asking for trouble. …
0
votes

A Simple Sql Select Query

That is not the best way to store the information you have. If it is all you have got then you need to be doing a contains (not an IN). The best answer is to have another table that links …