Viewing 15 posts - 24,511 through 24,525 (of 26,486 total)
Have you run a dbcc CheckDB on the database? Read BOL first, as you only want to see if there are any errors, you don't necessarily want to fix...
June 30, 2008 at 2:25 pm
To make sure anyone who helps you is on the same page a little more info is required. If you could provide the DDL (create statement for the table(s)),...
June 30, 2008 at 2:19 pm
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
Viewing 15 posts - 24,511 through 24,525 (of 26,486 total)