Viewing 15 posts - 106 through 120 (of 224 total)
Drop database <DBname> should work irrespective of the state.
December 11, 2009 at 8:12 am
What about the SSIS package info I was asking? Under what security context is the step running?
Hi Bru
but the job works fine when run manually,, does it still matter...
December 11, 2009 at 7:51 am
I had this,, I restarted SQL server agent and the schedule started to work. I still haven't got an answer as to why it stopped working...
Is it 32 or 64...
December 11, 2009 at 7:16 am
Do you get an error? Or do you mean it doesn't run at all...
December 11, 2009 at 5:41 am
Hi Madhu
Have a look at this post:
http://www.sqlservercentral.com/Forums/Topic710120-357-1.aspx?Highlight=class+registered
See if this helps.
December 11, 2009 at 3:40 am
Hi Madhu
You normally get it in windows related errors. Which logs did you see this?
You can find more information or download this from
http://www.dll-files.com/dllindex/dll-files.shtml?dbghelp .
I am not sure if...
December 11, 2009 at 3:26 am
DECLARE @TestString VARCHAR(256),
@MaxLength INT;
SELECT @MaxLength = 256; --Should be same as the VARCHAR() definition of @TestString above or column...
December 11, 2009 at 3:12 am
Have u installed SP2?
Check the logs for more information. see if you can find the dll then register that dll again. If not post what is in the log about...
December 11, 2009 at 2:35 am
It looks like one of the dll is incorrectly registered. Have you done an upgrade? What maintenance plan are you creating?
December 11, 2009 at 1:37 am
I had to do this recently..
This is what i found:
DECLARE @DateOld datetime, @DateNew datetime SET @DateOld = '23-Nov-2009' SET @DateNew = GETDATE()
SET DATEFIRST 1
SELECT DATEDIFF (day, @DateOld, @DateNew) -...
December 10, 2009 at 2:36 am
Please check permissions for the database.
Have you tried:
USE master;
GO
ALTER DATABASE <dbNAME>
SET SINGLE_USER
WITH ROLLBACK IMMEDIATE;
GO
ALTER DATABASE <dbNAME>
SET READ_WRITE;
GO
ALTER DATABASE <dbNAME>
SET MULTI_USER;
GO
December 10, 2009 at 1:56 am
Cool. got rid of the duplicates. it works like magic. It's easy when you know. Thank u so much.
December 9, 2009 at 3:55 am
This is the data i have after inserting extra 3 records that you mentioned above.
CCIDSnoItemAmount
XX11AA10
XX12BB30
XX23CC30
XX24DD40
XX25EE50
XX36FF50
XX210CC30
XX24DD40
XX25EE50
December 9, 2009 at 3:43 am
Hi Arun
I am getting this error: when i run the query
select a.CCID,
SUM(a.Amount) as Amount,
case when a.Sno IS Null then MAX(a.Sno)+1 else a.Sno end SNO,
(select item from #temp1 b where b.SNO...
December 9, 2009 at 3:23 am
Viewing 15 posts - 106 through 120 (of 224 total)