Viewing 15 posts - 13,231 through 13,245 (of 13,838 total)
Or restore a copy of the db from a month ago and use a third-party differencing program to compare this db with the current version and highlight schema differences.
October 24, 2005 at 11:17 am
From EM, click on Management and right click SQL Server Agent. Select Properties - you can view and modify the info here.
October 24, 2005 at 10:49 am
Is this link relevant? Sounds like similar problems ...
http://www.dbforums.com/showthread.php?threadid=986743&perpage=15&pagenumber=1
October 24, 2005 at 7:54 am
You've done it right. I do this often - the backup should be fine (it's also worth zipping the backup before you send it - you'll see the file size...
October 24, 2005 at 7:42 am
Have you tried rebooting? (The affected server, that is.)
October 21, 2005 at 12:23 pm
This is a manual job I think. Suggest you retire the Access db as soon as possible!
October 21, 2005 at 7:00 am
My colleague's insurance company increased his rate because he had had an accident in the previous year. The fact that the accident was not his fault (another car ran into...
October 21, 2005 at 6:15 am
Ah yes, there are different types of cursors - it's looking like the default type is forward only, which means that the FIRST qualifier cannot be used.
Try this
FETCH NEXT FROM...
October 21, 2005 at 5:47 am
OK. Try using FETCH FIRST as your initial FETCH statement - and you need the local variable there too:
FETCH FIRST FROM Localisation into @strSQL
October 21, 2005 at 5:18 am
When you use the FETCH command, you need to put the results of the FETCH into a local variable and then build your SQL string from that:
FETCH NEXT FROM Localisation...
October 21, 2005 at 4:45 am
Or the simple version:
declare @strSQL nvarchar(4000)
DECLARE @EmpName varchar(100)
Set @EmpName = '"Frank Smith", "John Doe"'
set @strSQL = 'SELECT * FROM Employees WHERE EmpName IN (' + @EmpName + ')'
exec sp_executesql @strSQL
Note:...
October 20, 2005 at 2:13 pm
Remi - is this your favourite function? It seems to keep popping up. Must read it one day and work out what's going on