Viewing 15 posts - 1,996 through 2,010 (of 2,904 total)
I think this is going to end up in the 'Unsolvable Glitch' folder.
-SQLBill
June 9, 2004 at 1:43 pm
Were there any other queries running at the time?
Any maintenance being done? Backups?
This might just be one of those unexplained happenings.
-SQLBill
June 9, 2004 at 12:01 pm
It's been awhile since you had the problem, have you solved it?
One question I have is: How was the backup done? Did you use SQL Server to do the backup...
June 9, 2004 at 11:55 am
It looks like TIMESTAMP is really a VARCHAR column (since it has parenthesis in it), so try:
DELETE FROM mytable
WHERE CAST((SUBSTRING(TIMESTAMP,1,10)) AS DATETIME) < GETDATE()-90
The SUBSTRING will get just the date...
June 9, 2004 at 11:48 am
You may actually have two separate issues.
1-the cluster failed over
2-the error message
The error message may be a result of the query running while the failover was occuring.
Did you 'see' the...
June 9, 2004 at 11:34 am
The only way to recover lost data is to restore from a backup.
However, you may not have lost data. What is your actual table structure?
On table A, there seems to...
June 9, 2004 at 7:48 am
Also, are there any related messages in the Windows Event Viewer logs (security, application, system logs)?
-SQLBill
June 9, 2004 at 7:39 am
I agree with George that you aren't giving us enough information to help you. What version of SQL Server 2000 are you using?
How are you trying to login?
-SQLBill
June 9, 2004 at 7:38 am
Sukhoi,
SET DATEFORMAT allows you to tell SQL Server what format the date is being sent as.
You can use several different formats:
SET DATEFORMAT dmy
SET DATEFORMAT mdy
SET DATEFORMAT ymd
So, for your input...
June 9, 2004 at 7:34 am
Steve (hoo-t),
Have you considered submitting that script? I think you should, it would be a great addition to the library.
-SQLBill
June 8, 2004 at 10:41 am
What kind of cluster do you have? Active/Passive or Active/Active?
On the issue of installing MSDE on a cluster, I know I was thinking that you wanted MSDE clustered so it...
June 8, 2004 at 8:05 am
Have you checked the SQL Server Error logs and the Windows Event Viewer Logs for any error messages that might give more of an insight?
-SQLBill
June 7, 2004 at 1:51 pm
Usually all the computers are in the same domain. If not, then the logins/passwords are being authenticated by the same domain controller. So, I believe your worksite computer needs to...
June 7, 2004 at 11:52 am
This might be simpler (I have not tested it)...
Create a trigger with:
IF (SELECT CONVERT(CHAR(30), CURRENT_USER)) IN ('list of approved usernames)
THEN <code here to allow change>
ELSE <code here to not allow change>
-SQLBill
June 7, 2004 at 11:45 am
Bottom line is that if the login BUILTIN/ADMINISTRATORS exists, the Windows admins have access to SQL Server.
Depending on how much security you want, you can remove that login and they...
June 7, 2004 at 11:37 am
Viewing 15 posts - 1,996 through 2,010 (of 2,904 total)