Viewing 15 posts - 616 through 630 (of 790 total)
The SQL backups maybe conflicted with a tape backup running around that time and locking the files/directory?
(just a wild guess though)
July 22, 2003 at 3:18 pm
...or you might even need to qualify it with the owner name:
Select * from [_SMDBA_].[_Actions_]
July 22, 2003 at 3:12 pm
Is refiner working ok using the same host command from a command prompt?
When using the command prompt, are you logged on as the same Windows account as MSSQLServer? ...
July 22, 2003 at 3:07 pm
Actually it's not returning the output of Refiner. It's returning the string "done" in all cases, whether Refiner works ok, fails, or even not there at all.
July 22, 2003 at 7:26 am
I don't know of a way to achieve what you're trying to do - that is shrink the 20gb log component of the backup before restoring, or tell restore to...
July 22, 2003 at 7:07 am
Just a few that come to mind:
* leaving the sa password null or some ridiculously guessable value
* not having primary keys, or at least unique keys
* not having clustered indexes...
July 21, 2003 at 11:00 pm
Another criterion for a deterministic function is that it's schema bound. Just add WITH SCHEMABINDING. Eg.
drop FUNCTION CREATE_DISP_DATE
go
set ANSI_NULLS on
set QUOTED_IDENTIFIER on
go
create FUNCTION...
July 21, 2003 at 9:40 pm
Is the .dat file a true SQL 6.5 backup, or maybe the person sent you a device file.
In Query Analyser try:
LOAD HEADERONLY FROM DISK = '<fullpath>.dat'
(eg. LOAD HEADERONLY FROM...
July 21, 2003 at 5:59 am
You cannot restore a SQL Server backup to MySQL. You can possibly use DTS or other facilities to transfer data though.
July 21, 2003 at 5:54 am
RESTORE database <dbname> FROM device1, device2,device3, device4, device5
July 21, 2003 at 5:52 am
Try syntax along the lines of:
UPDATE BLOCKS_HISTORY
set who_sql = text
from BLOCKS_HISTORY, ::fn_get_sql(@who_sql_handle)
WHERE (dt=@dt) and (who_sql_handle=@who_sql_handle)
July 21, 2003 at 1:37 am
I've had no past trouble accessing Access, Excel and Text files using that provider. Have you tried the example in BOL under "OLE DB Provider for Jet"?
July 21, 2003 at 1:10 am
How are you logged in during this scenario. What's the result when you run:
select suser_sname()
July 11, 2003 at 4:08 am
The simplest action you can take is to remove the builtin/administrators, but make sure you're absolutely sure of the sa password before you do so. You can then restirct...
July 11, 2003 at 1:51 am
800mb sounds right. I usually get around 1:5 compression of DB backups too.
July 11, 2003 at 1:43 am
Viewing 15 posts - 616 through 630 (of 790 total)