Viewing 15 posts - 1,921 through 1,935 (of 5,103 total)
Update statistics reqTablePref WITH FULLSCAN,ALL.
Then recompile your stored procedure ![]()
Good luck!
July 9, 2007 at 3:53 pm
Well that sounds like a terrible bug. I guess you will have to open a case with PSS.
Sorry!
July 9, 2007 at 3:51 pm
I am with Remi here. Can you just post in the J O B S forums ?
July 9, 2007 at 3:34 pm
"Disable" in my opinion is not to use Identity ever again at will. Because there are more than one table, according to the poster requirements, such "disable" is not possible.
When...
July 9, 2007 at 3:27 pm
Note:
DEPENDING on the *strength* of your IO subsystem you may still recive timeouts eventhough defrag is an online operation still requires a transaction log space.
The best bet is as it...
July 9, 2007 at 3:17 pm
or:
DECLARE @tbl TABLE(PartNo varchar(20))
INSERT INTO @tbl VALUES('12345|03')
SELECT REPLACE(PartNo, '|','')
FROM @tbl
WHERE CHARINDEX('|', PartNo) > 0
July 9, 2007 at 3:06 pm
If you are using 2005 ( as this forum name suggests ) you should be able to create the index with the "ONLINE" option.
July 9, 2007 at 3:04 pm
you are missing the "alias" in the inline query:
select count(Wt_Id) as Weight_Unit
from (select Wt_Id, Hosp_id from hpl.Weight_Unit where isNumeric(hosp_id) = 1) K
where CAST(Hosp_id AS int) BETWEEN 373 AND 378
July 9, 2007 at 12:32 pm
Computed columns can be persited in 2000 also ( by creating an index on them
)
July 9, 2007 at 12:15 pm
This problems tend to happens when the replica is didconnected from the primary for a long time usually due to time-outs, network outages or heavy locking, etc. It will stop...
July 6, 2007 at 2:07 pm
yeah but you can't CREATE VIEW db.dbo.view ![]()
July 6, 2007 at 1:49 pm
SET INDENTITY_INSERT ON does *NOT* disables the identity property. It merely let the batch exceuting it specify a value for the identity column but that is different from "disabling"
The...
July 6, 2007 at 1:37 pm
Viewing 15 posts - 1,921 through 1,935 (of 5,103 total)