Viewing 15 posts - 16 through 30 (of 64 total)
Ninja,
Thanks, but unfortunately, I can't post any specific examples of our calculations. The data itself would not be meaningful without the calculations that produced them, and I can't post these...
October 20, 2006 at 7:16 am
Hi everyone and thanks for your comments.
Unfortunately I clearly didn't define my problem clearly enough because we seem to have gone on to a side issue questioning the database design, rather...
October 20, 2006 at 5:00 am
Whilst I obviously agree that you want your CV and covering letter to be as accurate and impressive as possible, I was a little surprised over the very narrow band...
September 12, 2006 at 2:52 am
Still doesn't seem to be corrected. Oh well...
September 11, 2006 at 7:12 am
I wonder if it could be caused by a badly fragmented index? Perhaps because of the physical position of the max records on the disk it is able to find...
September 8, 2006 at 2:45 am
Steve, Bernard, thanks for your answers. I managed to fix the problem by un-registering the server in Enterprise Manager and the re-registering it under the name (local) rather than the...
September 8, 2006 at 2:41 am
What I usually do when hit with a problem like this is to first work out which bit of the procedure is taking the most time. I do this by putting...
August 31, 2006 at 10:08 am
In your code, the variable @cont_descCursor is undefined. Perhaps that is the source of your problem.
August 31, 2006 at 9:57 am
Your stored procedure has returns 2 resultsets:
Select unit, JobCCNO, [FULL NAME], SSN, EMPLNO ,[Unit Desc], Department, Manager from dbo.WinEmp
select * from dbo.WinEmp E ....etc
So in grid mode, 2 grids are...
August 31, 2006 at 9:44 am
You could use a trigger to get the row count e.g.
CREATE TABLE [dbo].[RowCounts] (
[MyID] [varchar] (50) COLLATE Latin1_General_CI_AS NULL ,
[Counter] [int] NULL
) ON [PRIMARY]
GO
CREATE TRIGGER [CountRows] ON [dbo].[RowCounts]
FOR...
August 21, 2006 at 8:42 am
My job is fairly dull a lot of the time with bouts of overwork and panic, and not particularly well paid. But, I get to work from home almost everyday, which...
May 5, 2006 at 2:25 am
You could use the Convert function to format the date as a string which does not include the time:
e.g.
WHERE Convert(varchar,table1.date,103) = Convert(varchar,table2.date,103)
January 26, 2006 at 3:47 am
One think I particularly like is that you can cut and paste into (or from) Excel. I often have to send adhoc data samples in excel to our test team...
January 26, 2006 at 3:41 am
Thanks everyone, looks like the first thing we will do is get more memory, and some more disk and then move the data and logs to separate file systems.
January 6, 2006 at 2:20 am
Thanks for your thoughts Mike, I had been wondering if moving the databases around might give us a boost, certainly I have found that having tempdb on a different array to...
January 5, 2006 at 5:22 am
Viewing 15 posts - 16 through 30 (of 64 total)