Viewing 15 posts - 31 through 45 (of 46 total)
when i tried to run the below query gets the warning message
Warning: Null value is eliminated by an aggregate or other SET operation.
SELECT
S.StatisticsStartTime,
S.EquipmentNumber_FK,
isnull(MAX(S.StatisticsEndTime),0),
isnull(MAX(E.EquipmentClass_FK),0),
isnull(MAX(E.RemoteMonitoringType_FK),0),
isnull(MAX(E.AnalyzerType_FK),0),
isnull(MAX(S.TotalStarts),0),
isnull(MAX(S.TotalRunTime),0),
isnull(MAX(S.DoorOperations),0),
isnull(MAX(S.Knx3NbrRelevellings),0),
isnull(MAX(S.CreateDate),0)
FROM KRM.dbo.ElevatorTotalStatistics S INNER JOIN KRM.dbo.Equipment...
August 12, 2010 at 7:08 am
There is a SP running and its very big to paste it here. But can anyone tell me why its coming and how we can overcome with this. It looks...
August 11, 2010 at 3:16 am
Thanks Steve for the solution provided. It has worked as expected.
Thanks again
June 16, 2010 at 6:30 am
but when I tried to use the below query
IF ISNUMERIC('$123432345')=1
SET @profile = 'NUMBER'
ELSE
SET @profile = 'CHAR'
SELECT @profile
it is also returning number even though its having $...
June 16, 2010 at 5:37 am
Can anyone give the solutins for the mentioned 4 points in the previous
Regards,
Naveen
March 24, 2010 at 3:23 am
Thanks I got by changing the permissions. But I feel when we give it to users, they may not hav the full permisssions and in that case it will not...
September 16, 2009 at 2:13 am
When I am performed the below steps I found the error "Could not find index entry for RID 16b676fd5b010000 in index page (1:116) index id 0, database dbname.
1. changed the...
July 8, 2009 at 7:03 am
I exeucted DBCC CHECKDB (dbname, repair_rebuild) option but it is throwing the same error:
Server: Msg 926, Level 10, State 1, Line 1
Database 'Test1' cannot be opened. It has been marked...
July 8, 2009 at 6:36 am
When I executed the DBCC CHECKDB(DBNAME), getting the below error
Database 'Test1' cannot be opened. It has been marked SUSPECT by recovery. See the SQL Server errorlog for more information.
Can you...
July 8, 2009 at 6:14 am
Now I have created a new database with same mdf and ldf file names. Then replaced those files with my old files. After that when I opened my Enterprise Manager...
July 8, 2009 at 5:56 am
Yes, that is the entire contents of the log file. So not clear where it is failing.
Can you tell me what are the possibilities.
Thanks in advance
May 29, 2009 at 1:24 am
Checked the report and logging icon and found log extended information is already selected. The error description which I sent is from that log file only.:-)
May 28, 2009 at 9:52 am
Can you please tell me where extended logging button is available in SQL Server2005.
When anaylsed further, I found another message:
Date27/05/2009 22:00:00
LogJob History (OnePoint - Check Integrity)
Step ID0
ServerC134PC001\PC001
Job NameOnePoint -...
May 28, 2009 at 9:24 am
Viewing 15 posts - 31 through 45 (of 46 total)