Viewing 15 posts - 4,876 through 4,890 (of 6,216 total)
Selecting via code or a stored proc?
Andy
February 20, 2002 at 6:35 pm
How about adding a locking hint to the select?
Andy
February 20, 2002 at 11:20 am
There is a trace flag for making it a little easier to read. I think 257. Been mentioned a couple times in the SQL Mag XML column.
Andy
February 20, 2002 at 7:32 am
Had some problems in v7 if you selected the repair errors setting, sometimes would get left in single user mode. Only complaint I have with it is the all or...
February 20, 2002 at 7:31 am
Different regions meaning different parts of a table?
Andy
February 19, 2002 at 10:08 am
Seems like a function would work for that?
Andy
February 19, 2002 at 7:06 am
From BOL:
Calling User-Defined Functions
When calling a scalar user-defined function, you must supply at least a two-part name:
SELECT *, MyUser.MyScalarFunction()
FROM MyTable
Table-valued functions can be called by using a one-part name:
SELECT *
FROM...
February 19, 2002 at 7:05 am
SQL2K is definitely worthwhile for replication. Doesnt have everything yet, but every lit bit helps. Easiest way is to just run the distribution agent, that will move any pending transactions...
February 19, 2002 at 5:01 am
Should work without a problem. BOL is decent, the replication wizard saves a ton of time compared to figuring it out manually! If you haven't worked with replication before I'd...
February 19, 2002 at 4:58 am
I hear you!
My only thought on this is that most companies tend to fall into the same trap, adding functionality over time. It makes sense to trickle out changes...
February 19, 2002 at 4:56 am
I use underscores some, usually in procs for usp_xxxx. Other than that I mostly use CamelCaseMoreOftenThanNot. Definitely skip the reserved words. And no spaces in object names! I believe in...
February 18, 2002 at 4:16 pm
It should be a proc in your master db - perhaps deleted somehow?
Andy
February 18, 2002 at 4:12 pm
Just a little bit. Doing any type of transform adds weight to the process and makes validation harder. Not that its a bad thing, just have to measure it!
Andy
February 18, 2002 at 11:04 am
Except that it is an insert and not an update trigger!
Andy
February 18, 2002 at 11:02 am
Might also try removing the NOT if you can. Though worth testing to see if it changes anything.
When you run these in QA, whats the response time look like? All...
February 18, 2002 at 11:00 am
Viewing 15 posts - 4,876 through 4,890 (of 6,216 total)