Viewing 15 posts - 106 through 120 (of 132 total)
Ahh. it's nice to see normalisation being mentioned.
What about SAP or Postgresql on Linux as alternatives ?
April 22, 2004 at 4:59 am
what kind of access do you have to the database ?
looks like your permissions are set to read only.
it might be an idea to have a chat with your DBA
April 22, 2004 at 3:48 am
if your identity cols are all primary keys you could use
select CONSTRAINT_CATALOG AS [Database], TABLE_NAME
from INFORMATION_SCHEMA.TABLE_CONSTRAINTS
where CONSTRAINT_TYPE = 'PRIMARY KEY'
which will return the database name and table name
not ideal but...
April 22, 2004 at 3:32 am
I think you can also set up a maintenace job to shrink the db - or set up a job to do both and run it every day/week to suit...
April 22, 2004 at 2:30 am
Fantastic !
An addition would be the "Smoke Blowers" article can be found at http://www.angrycoder.com/article.aspx?cid=1&y=2003&m=4&d=2
April 20, 2004 at 8:20 am
spot on
glad to be of help
April 1, 2004 at 7:26 am
had another think about this and i would suggest rethinking your solution.
getting the top 500 rows in the database will mean that the 4 apps getting them are going to...
April 1, 2004 at 2:51 am
Have a look at
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/tsqlref/ts_set-set_74bw.asp
Choose an isolation level such as read uncommitted and that should allow the second query to read the updated flag whilst the first transaction is still waiting...
March 31, 2004 at 1:30 pm
i don't know of any other way ....
March 31, 2004 at 1:16 pm
I would allways go down the transaction route but this would depend on the level of expertise in your situation.
If you explain in more detail what your application does and...
March 31, 2004 at 1:12 pm
are your inserts and updates wrapped in transaction blocks with a suitable isolation level ?
March 31, 2004 at 2:33 am
where is the free downloads section ?
i've just had a look for it and can't find it ...
March 19, 2004 at 3:29 am
I have some code written in C# that dumps all users, table defs, and permissions to local files on disk.
The code installs as a service and would only need a...
March 19, 2004 at 3:09 am
I have some C# code that dumps table defs and permissions using DMO.
If you want it let me know.
Steve
March 17, 2004 at 2:33 am
Your server must be set to run in a mode that supports versioning if you are using statement level versioning. The flag is /T3970 in beta 1.
Each database needs to...
February 24, 2004 at 3:20 am
Viewing 15 posts - 106 through 120 (of 132 total)