Viewing 15 posts - 631 through 645 (of 1,524 total)
Yes, I removed the Primary Key on the audit table as well.
Thanks everyone for the help.
April 17, 2013 at 12:00 pm
THanks a million. I made the JOB_POSTING_NUM an identity column in the audit table and removed that column from the trigger. I overlooked that 'little' detail. Just...
April 17, 2013 at 11:56 am
same as the real table...
CREATE TABLE [dbo].[JOB_POSTING_AUDIT](
[JOB_POSTING_NUM] [int] NOT NULL,
[SITE_NUM] [int] NULL,
[JOB_CAT_COD] [varchar](7) NOT NULL,
[DEFAULT_TXT_IND] [bit] NOT NULL,
[ADDRESS1_TXT] [varchar](100) NULL,
[ADDRESS2_TXT] [varchar](100) NULL,
[CITY_NAM] [varchar](50) NULL,
[ST_PROV_COD] [char](2) NULL,
[POSTAL_COD] [varchar](10) NOT NULL,
[START_DAT] [date]...
April 17, 2013 at 11:45 am
I agree. It goes to show you that your hardware is not the bottleneck. Sometimes it is just simply the I/O can only go as fast as it...
April 17, 2013 at 8:09 am
Have someone give you examples of what SQL will run against the dbs... or start a Profiler session and have app folks run what runs against the db. Then...
April 17, 2013 at 6:46 am
Great article. It drives me crazy that Microsoft, out of the box, has such small sizing and grow by 10% for model and TEMPDB. The first thing I...
April 17, 2013 at 6:18 am
FYI: Some tables will not replicate if you don't have a Primary key on them.
April 4, 2013 at 6:08 am
You can view Task Manager for CPU usage and there are some good monitoring tools to graph that over time to see if you are maxing the box at high...
April 3, 2013 at 7:28 am
First of all what do you mean, capacity for existing?, capacity planning for new? Also, what version of Windows, what version of SQL Server?
April 3, 2013 at 7:15 am
I agree. I always stop SQL Server and make file copies of master, model, msdb after an install and prior and after a Service pack too. As a...
April 2, 2013 at 11:42 am
That is your back end SAN snapshot. We have it here as well. Talk with your storage Admin
April 2, 2013 at 5:49 am
What do you want to start it in single user mode? Typically this is reserved for restoring master or if there are major problems with SQL Server you put...
March 27, 2013 at 12:51 pm
Question: How big is it getting? Remember, that all sorting of data goes on there and it can get quite large. If you rebuild indexes and say...
March 27, 2013 at 12:45 pm
Great, thanks. I just implemented this on one of my SQL Servers and will do some more as well.
March 27, 2013 at 12:02 pm
calvo (3/27/2013)
March 27, 2013 at 8:30 am
Viewing 15 posts - 631 through 645 (of 1,524 total)