Viewing 15 posts - 7,036 through 7,050 (of 7,636 total)
one of the [font="system"]ex.cal_date[/font] column values in the database that fails has probably been set to zero or possibly NULL.
April 30, 2008 at 4:06 pm
Lynn (4/30/2008)
April 30, 2008 at 3:49 pm
Some of the record sequences look very suspicious to me. In particular, I would check out the records with IDs: 7622 and 9012. Especially the second one (9012)...
April 30, 2008 at 3:39 pm
Frankly, this looks like someone is running manual tests on your table and then rolling-back or deleting the records.
Look for DELETES or ROLLBACKS in the log file. Also, if...
April 30, 2008 at 3:34 pm
ygulas (4/30/2008)
insert into PROD.DB.dbo.tablex
select * from DEV.DB.dbo.tablex
( DEV is the name of...
April 30, 2008 at 3:14 pm
Also, you need to give us some configuration information. The significance of these numbers is heavily affected by how many processors*cores and how many volumes/spindles.
April 30, 2008 at 3:03 pm
How long does the spike last and are you sure that it is coming from the SQL Server process and not something else running on the same machine?
April 30, 2008 at 2:44 pm
You could jury-rig something up through Service Broker or even a SQL Agent Job.
April 30, 2008 at 2:38 pm
The same way the I did it in FORTRAN over 35 years ago:
Float3 = Floor(10000 * (Float2 / Float1)) / 10000
This may be my oldest user-defined function that I have...
April 30, 2008 at 2:18 pm
Paul Campbell (4/30/2008)
I am not an SQL expert, so dont really understand what you mean caches not loaded?
Are the caches stored per database? All I was aware...
April 30, 2008 at 2:02 pm
Something that I used to use that is just a tabular implementation of Grant's suggestion:
create table Months (MonthNo int, Month4Period int, Month6Period int)
insert into Months
Select 1, 1, 1
Union...
April 30, 2008 at 1:57 pm
matt6749 (4/30/2008)
April 30, 2008 at 1:44 pm
Lynn (4/29/2008)
I could but I am trying to stay away from splitting the database into 2 dbs because it will complicate maintenance especially in production.
Yeah, insuring that your restores can...
April 30, 2008 at 1:39 pm
Mind you, it would not necessarily perform very well.
April 30, 2008 at 1:32 pm
And, the tables might be stored in different filegroups or files on different disks that have different performance characteristics or usage profiles.
April 30, 2008 at 1:29 pm
Viewing 15 posts - 7,036 through 7,050 (of 7,636 total)