Viewing 15 posts - 211 through 225 (of 461 total)
Jag,
Keep in mind, that the optimiser won't use any indexes on
1) Select * from Employee where EmpCode like '%P%
If you want the optimiser to choose any of your indexes...
May 25, 2004 at 2:51 am
I wouldn't recommend to set the compatibility mode to 7.0.
Sooner or later you (or your app vendor) have to migrate your app to the actual SQL Server version (2K, Yukon...)....
May 13, 2004 at 1:37 am
Hi,
We have SAP on SQLServer too.
I have to disagree with Antares (first time. I apologize) but our experiences in that size of database shows...
May 4, 2004 at 11:20 pm
Menno,
Your solution will only work when you insert nwe records.
To be able to it with updates you have to implement a (befor) trigger on update if you want to upgrade...
April 27, 2004 at 2:22 am
The syntax of the whole query is wrong.
No join operators and no "AND" kaywords are allowed in the SELECT clause.
In addition there is no table in the FROM clause which...
April 26, 2004 at 1:41 am
I'm using xp_smtp_sendmail and it works fine for me.
Try this out http://sqldev.net/xp/xpsmtp.htm
April 23, 2004 at 3:18 am
AS BCP has not been evoluated for long time, I've experienced a much faster data load with custom written ODBC based C file then BCP.
So if you really want to...
April 16, 2004 at 10:04 am
April 13, 2004 at 2:38 am
My problem to backup to disk is the size of our databases.
My biggest databases are over 300GB so if I would need to backup everything on disk before putting the...
April 13, 2004 at 2:28 am
Brandon,
Thanks for reply.
My concern with the DAS is that it's not usable for a cluster. Anyhow I have to use an external disk subsystem and attach my two nodes to...
April 7, 2004 at 5:48 am
This is a too generic question to be answered here.
Never the less here are some advices:
Once everyting in...
April 6, 2004 at 4:19 pm
stacenic,
By using an index on a computed column you will materialize that column and it wont be calculated on the fly.
So an additional 20 bytes will be stored within your...
April 6, 2004 at 4:14 pm
Shawn,
Thanks for the links.
As an answer to your question: No I'm not using merge replication. In fact the host database is Oracle. So there will be (in fact it's already...
March 24, 2004 at 1:45 am
In this case get it pragmatically.
March 24, 2004 at 1:37 am
georged,
Be careful! Clustered Index Scan meens in fact table scan!
Try it out by removing the clustered index and creating a nonclustered on instead. You can see the difference.
Also check why...
March 23, 2004 at 4:14 am
Viewing 15 posts - 211 through 225 (of 461 total)