Viewing 15 posts - 31 through 45 (of 52 total)
I am really really struggling with this.
I am now getting the following message in my event log
Database Mirroring login attempt failed with error: 'Connection handshake failed. The certificate used...
August 8, 2006 at 4:42 am
Hi,
I can telnet to port 5023 on TOP-DB05.array.com
It is very confusing. i am trying to think of an alternative, but at present without a witness, the mirroring is of limited use,...
August 7, 2006 at 2:15 am
As far as i can see the SQL Browser service is running on the server. There is an instance of SQL Server 2005 Standard and an instance of SQL Server...
August 4, 2006 at 10:31 am
By the way, I have get TCP/IP and Named Pipes enabled on the SQL Express installtion. But it doesn't seem to make any difference.
S
August 4, 2006 at 8:04 am
Assuming (stupidly I know) that the MessageId is an identity column and is the primary key this is how I'd tackle it:
select
t.AuthorId
July 17, 2006 at 10:34 am
You could either store the previous version of the table in a different table on the database and then update the Y/N flag on your new version.
Or you could import...
July 13, 2006 at 3:36 am
Actually, I seem to have solcved this by removing the With NORECOVERY Option from my restore
July 10, 2006 at 9:43 am
Not my finest bit of code but...
set nocount on
declare @startdate datetime
declare @table table (DW int)
set @startdate = '1 Jan 2006'
while @startdate < getdate()
begin
insert into @table (DW)
values (datepart(dw,@startdate))
...
June 14, 2006 at 6:40 am
I would have thought it would something like
DELETE from table2 where description NOT IN (select description from table1) AND referenceID not in (select referenceID from table1)
S
June 14, 2006 at 3:10 am
How about
select e.<FieldList> from Employees e
where e.EmployeeId not in
(select EmployeeId from EmployeeTraining where CourseRefNo = <CourseId>
that should do the trick.
S
June 12, 2006 at 6:58 am
Fantastic, this is just what was hoping to hear.
Thanks very much
S
June 9, 2006 at 9:37 am
There are several ways to store the output in excel.
The two easiest are
1. In query Analyzer set your Output to File and your ouput format to CSV (Tools->Options->Results will create...
June 9, 2006 at 9:19 am
I'm sure you've already thought of this, but if the reference to the Access DB refers to a drive letter, it may be a different letter for the SQL Agent -...
June 8, 2006 at 6:41 am
Thanks - that is a useful tip on the error log. I will be making sure we do that in future.
Thanks for all your suggestions, I will continue to monitor the...
June 7, 2006 at 2:00 am
Viewing 15 posts - 31 through 45 (of 52 total)