Viewing 15 posts - 91 through 105 (of 134 total)
Jeff - Response from select @@version:
Microsoft SQL Server 2000 - 8.00.2039 (Intel X86) May 3 2005 23:18:38 Copyright (c) 1988-2003 Microsoft Corporation Enterprise Edition on Windows NT 5.2 (Build 3790:...
July 27, 2007 at 1:51 am
thanks, but your query did'nt work...i got this from someone and it worked
select ServerName, Alert, alertdate from dbo.TNG_Alerts
where AlertDate > (select getdate()-@day)
order by ServerName,alertdate
July 6, 2007 at 6:08 am
the data must be greater than yesterday's date, sorry forgot to include, you have to enter a parameter.
usp__RptTNGAlerts '1'
The parameter entered would bring back data greater than yesterday's date,...
July 6, 2007 at 5:52 am
Thanks but I found this:
Select servername,LEFT (alert, CHARINDEX(' on ', alert) ) as Alert,
LTRIM(RIGHT(alert, CHARINDEX(' on ', REVERSE(Alert)) + 20)) as AlertDate
from tempTNG_Alerts
July 5, 2007 at 8:32 am
Thanks for the info but I have never used scalar UDF 's before.
Can anyone assist me with this one.
July 5, 2007 at 3:27 am
I don't have any control of the source application, and I also tried to substring but it won't work because the ServerName are not all 8 characters long.
July 5, 2007 at 2:51 am
Thanks for the info Sugesh.
Another problem: the spec has changed, I no longer have to separate the columns when I take it to the table. The...
July 5, 2007 at 2:36 am
I'm not sure....i asked the SA the same question and he is not aware of backup software running during this time....usually when a drive is backed up, the backup job would...
June 29, 2007 at 7:44 am
Mark...I did add the user to the database and gave him db_owner rights to the databases he wanted to access. But it still gave the error.
June 29, 2007 at 6:58 am
All that you mentioned above was done before....I am looking for a different solution to this problem.
June 29, 2007 at 5:00 am
No, the drive is not a networked drive. All backups are locally.
June 28, 2007 at 3:16 am
thanks for the info, it was a lot of help.
I also got this script from one of my colleagues:
select
* from...
June 6, 2007 at 7:07 am
We have assigned db_owner rights to a user and it seems as if those rights are not being taken over. I far as the error messages are concerned, I would'nt...
May 22, 2007 at 4:44 am
Viewing 15 posts - 91 through 105 (of 134 total)