Viewing 15 posts - 661 through 675 (of 1,098 total)
You could save the string in multiple varchar (8000) variables, and then concatenate them when executing the xp_sendmail command.
April 11, 2003 at 8:51 am
The replication monitor will only show if you have the Server configured as a Distributor. Did you have the server configured as a distributor before? Maybe it was deleted and...
April 11, 2003 at 8:33 am
Did you made any changes to your distributor? Did you disable the replication?
April 11, 2003 at 7:34 am
If it fails and you need help with the restore process, here is many people who can give you advice.
Good luck!
April 9, 2003 at 2:42 pm
You should read in BOL the available options, check REPAIR_REBUILD option wich is more secure or REPAIR_ALLOW_DATA_LOSS)
You should run from QA:
DBCC CHECKDB ('DbName', REPAIR_REBUILD)
If is not very time consuming, I...
April 9, 2003 at 2:36 pm
Is you are worried about the lincense
then you should consider using MSDE. Wich is the engine (with some limitations)
of SQL Server. There are no problems in the license with this,...
April 9, 2003 at 2:21 pm
When SQL starts a full backup it checks wich is the LSN (Log Sequence Number), and backup all the datafiles pages plus the transactions pending to be saved into the...
April 9, 2003 at 2:15 pm
If you didn't do it, run again the DBCC CHECKDB command with the REPAIR_ALLOW_DATA_LOSS option. If it stills gives you errors, then I hope you have backups to restore...
April 9, 2003 at 2:11 pm
Well I never heard of them. Where did you read them? I would say they are the data and log files of SQL (.mdf and .ldf), but I'm not sure.
...
April 9, 2003 at 10:49 am
If you delete rows from a table, SQL will used the free space to new inserts from the same table or any athoer table.
quote:
April 9, 2003 at 10:06 am
Well, pages are 8 kb allocation units. And remember that 8 pages also form an Extent.
you the undocumented command DBCC PAGE you can check how many rows you have in...
April 9, 2003 at 9:43 am
Empty pages of data are not released to the SO unless you want to. They are kept wihtin SQL. And SQL will allocate any free page when it need it....
April 9, 2003 at 9:32 am
Viewing 15 posts - 661 through 675 (of 1,098 total)