Viewing 15 posts - 1 through 15 (of 22 total)
October 21, 2004 at 6:31 am
May 23, 2004 at 5:47 pm
AFAIK, the answer is no, however, allowing users to develop extensive expressions embedded in reports is just asking for troubles. In enterprise environment I would recommend restricting expression code to...
April 2, 2004 at 12:40 am
Gabor, good point. I have no clue as to why first query uses constr_pk_318. Just to clarify, index_319 is a clustered index on renled_parent_id column (int) and constr_pk_318 is a...
March 23, 2004 at 12:39 pm
Frank,
I think SQL Server optimiser deserves a little more credit. In the sample below I use real table from my database. Table contains about 80k rows and has a clustered index...
March 18, 2004 at 4:26 pm
Stuart,
I do not believe it's possible - see INF: Frequently Asked Questions - SQL Server - SQL Mail for details. We've had the same issue on the client site and...
March 15, 2004 at 11:59 pm
MrSQL,
average trigger it is not but trickiest part, IMO, is not multirow update - it's the fact that aggregates cannot be used as update values hence the subselect with grouping.
Mind you, just...
February 19, 2004 at 5:35 pm
rstone,
hope you're referring to MrSql post, not mine - my version should work for 0, 1 or 10000 rows being inserted (with minor modifications it will work for updates as well)....
February 19, 2004 at 3:40 pm
How about this
set nocount on create table table1( Customer varchar(10) not null, [Date] datetime not null, RefNo int not null, TotalValue int null, constraint pk_customer1 primary key (Customer, [Date], RefNo) )
create table...
February 19, 2004 at 4:27 am
Good question, bad answer and even worse choice of answers. From BOL:
RAID 1 provides fault tolerance and generally improves read performance (but may degrade write performance).
How degraded write performance...
February 10, 2004 at 12:31 pm
Dave,
unless you can repave your server I suggest you contact PTS - looks like something's seriously wrong with SQL on your machine.
Cheers
--
georged
December 16, 2003 at 4:02 pm
We had exactly the same problem and it's not related to SP3 (we experienced it after SP2). Try this:
1. Do a search for the file named ftsetup.exe on the SQL...
December 15, 2003 at 3:57 am
The easiest way to pinpoint the problem is to run Profiler and capture the exact command being passed to SQL Server. Can you post the command being executed?
--
georged
December 11, 2003 at 4:38 am
It would be even more helpful if it was available
quote:
Microsoft OLE DB Provider for ODBC Drivers erro '80004005'[Microsoft][Driver ODBC para Microsoft...
December 5, 2003 at 4:36 am
quote:
sometimes the best solution is the simplest...
a) easy to maintain - any novice in SQL can understand the code
b) the selects will...
December 1, 2003 at 3:55 pm
Viewing 15 posts - 1 through 15 (of 22 total)