Viewing 15 posts - 121 through 135 (of 244 total)
umm thats odd thanks for your help. Trying to remeber how i created those stats now maybe i did it with a script or something funny??? Pretty sure they are...
September 13, 2006 at 9:56 am
here the error message i was getting. As i said earlier i only starting getting this after we upgraded to 2005
Msg 5074, Level 16, State 1, Line 1
The statistics...
September 13, 2006 at 9:36 am
--This code will drop all stats on a given table/column combination
declare
@TableName varchar(50), @ColumnName varchar
September 13, 2006 at 9:21 am
thanks a lot for this i will sort out he dynamic drop commands from this.
September 13, 2006 at 8:37 am
stats were auto generated and the error is a dependency issue. It says i cant drop the columns becasu ethe stats are dependednt on it. if i drop the stats...
September 13, 2006 at 7:50 am
----------------------
------DDL-------------
----------------------
create
table customer(
CustomerID
int,
CustomerName
varchar (20),
September 12, 2006 at 5:28 pm
is there a db wide setting wich i can set so that the stats will be automatically droped?
September 12, 2006 at 3:43 pm
i dont think it is the report cach e because the report refreshes fine if i reprocess the cube . How do i get the cube to show incremental changes...
August 23, 2006 at 12:21 pm
But isnt it possible to make the cube real time as in jholap or rolap which listens for changes and updates automatlically? Is this not possible if your dimensions and...
August 22, 2006 at 3:33 pm
Jeff how would you do it with a function?
August 19, 2006 at 8:20 am
Not sure about DB2 but this solution is fairly 'ansi'. And should be alot more efficient than a looping structure.
------------------------------------
if object_id('a') is not null -- Drop Test Table
drop table...
August 18, 2006 at 10:11 am
Strange it appears to see the 2 as part of the sp name rather than as a parameter
try this
Create procedure [dbo].[usp_GetErrorLog] @servername sysname
AS
SET NOCOUNT ON
declare @sql varchar(100),...
August 17, 2006 at 3:36 am
nope thats why i said probably.
Would be interesting to see, if you have time.
I suspect it would be faster because no joins are required particulary no outer joins.
Perhaps the...
August 15, 2006 at 11:04 am
or if you are on sql 2005 you can use
select EmployeeName ,DOB
from Employees
EXCEPT
select EmployeeName ,E.DOB
from modulelog
Probably more efficient
August 14, 2006 at 11:05 am
Turns out it was because setup.exe was contained in the "" works fine if i navigate to the directory first.
Thanks,
August 14, 2006 at 4:52 am
Viewing 15 posts - 121 through 135 (of 244 total)