Viewing 15 posts - 24,511 through 24,525 (of 26,484 total)
Have check the system while this query is running to see if there are any blocked processes?
😎
June 30, 2008 at 2:12 pm
Start with this and do a lot of testing. You may need to tweak it as I did not do a lot of testing so its accuracy may vary.
declare...
June 30, 2008 at 2:09 pm
Now, how would you like to see the result returned? If it is a single number value, how would you distinguish between 1 day, 1 week, 1 month, 1...
June 30, 2008 at 1:21 pm
Peggy Rowles (6/30/2008)
June 30, 2008 at 12:05 pm
Here is what I think may have happened, and it will require you to run a full backup to restart your backup chain. It sounds like the recovery model...
June 30, 2008 at 11:59 am
What recovery model is the database using?
😎
June 30, 2008 at 11:23 am
If Pkg_Per is defined like this: Pkg_Per decimal,
Then I know the problem. The problem is the default definition for decimal, if not explicitly defined, is like defining as (18,0)...
June 30, 2008 at 10:49 am
Doesn't tell me much, decimal what; decimal(10,3), decimal(3,2)...
😎
June 30, 2008 at 10:41 am
Also, how are these defined: Installed_Clients Targetable_Clients ?
😎
June 30, 2008 at 10:25 am
How is this column Pkg_Per defined in the database?
😎
June 30, 2008 at 10:21 am
There looks to be a problem with this query:
UPDATE dbo.tblOpenDaily
SET Who = 'Result'
(SELECT TOP (100) PERCENT dbo.tblOpenDaily.[Entered Date]
FROM ...
June 30, 2008 at 9:43 am
Have you tried attaching the existing model.mdf and model.ldf files since you say the exist in the data directory with the other system database files.
😎
June 30, 2008 at 9:34 am
Not exactly sure how SQL Server is interpreting your query, but you might want something more like this:
UPDATE dbo.tblA
SET Answer = 'Result'
FROM dbo.tblA INNER JOIN
...
June 30, 2008 at 9:24 am
I would also change your autogrowth to grow by a set size each time. Growing by 10% means each time it grows, it will grow by 10% of its...
June 30, 2008 at 8:55 am
Peso (6/30/2008)
http://www.sqlteam.com/article/datediff-function-demystified
Peter,
I just took the time to read your article above. I wish I had know about it as I was doing my article, I would have put a...
June 30, 2008 at 8:16 am
Viewing 15 posts - 24,511 through 24,525 (of 26,484 total)