Viewing 14 posts - 16 through 29 (of 29 total)
David,
I agree with you that the clustered index with it's 4 columns is a bad thing. Unfortunately, I have been advised to be VERY careful should I want to change...
February 18, 2005 at 10:40 am
Lots of good info here...
http://www.sql-server-performance.com/database_design.asp
I use this site a lot as well as SQL Server Central. Enjoy!!
--Lori
December 29, 2004 at 8:52 am
I use Idera's SQL Diagnostic Manager. It monitors performance, will notify you when performance dips and gathers statistics together nicely. The nicest thing is that it can read the trasaction...
November 5, 2004 at 8:09 am
I have this script in my archives...
CREATE FUNCTION LPAD(
@Char1 VARCHAR(8000),
@n INT,
@Char2 VARCHAR(255))
RETURNS VARCHAR(8000)
AS
BEGIN
IF DATALENGTH(@Char1) > @n
BEGIN
IF SIGN(@n) = -1
RETURN SUBSTRING(@Char1, 1, 0)
RETURN SUBSTRING(@Char1, 1, @n)
END
RETURN REPLICATE(@Char2,...
September 30, 2004 at 7:27 am
You should set off your Profiler and then disconnect instead of logging off in terminal services. When you log off your session closes and anything you are doing stops too. Just...
August 27, 2004 at 8:25 am
With 400 connections, have you checked to see what your maximum worker threads is set at? I think out of the box it is set at 255. You might want to...
August 27, 2004 at 8:20 am
So far we are going to start with 1 data mart that will show sales and needs to be able to be queried by salesmen and even possibly customers. We...
August 16, 2004 at 8:58 am
Wow!! What good advice!! We do have SQL Server 2000 Enterprise Edition on the server where we are intending to house the data for the DW. We do know that...
August 16, 2004 at 7:13 am
My solution so far has been to take Steve's approach. I made a job that queries a table from the database and logs the time. I set it up to...
July 23, 2004 at 7:42 am
There is another way. You can query AD and put everything into a table. Here is how I have written an LDAP query before...
EXEC sp_addlinkedserver
'ADSI',
'Active Directory Services 2.5',...
July 14, 2004 at 1:05 pm
This is all really good info. I have never had an application or database with barcodes and did not realize that this should be a font. But, I guess I...
July 9, 2004 at 8:47 am
Thanks Jim!! I thought that I had it down but wanted to make sure. I think I will go the business owner and tell him that this is "bad juju". ...
July 8, 2004 at 12:09 pm
It is because this user does not exist in this server. First of all the user must have a login that exists. You can create one if you...
June 22, 2004 at 11:53 am
Thanks a bunch! That is what I thought. A full backup is taken every night with tlogs done every hour from 5am - 8 pm. The database is about 30GB and...
June 22, 2004 at 4:37 am
Viewing 14 posts - 16 through 29 (of 29 total)