Forum Replies Created

Viewing 15 posts - 661 through 675 (of 1,098 total)

  • RE: varchar length

    You could save the string in multiple varchar (8000) variables, and then concatenate them when executing the xp_sendmail command.

  • RE: monitor

    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...

  • RE: monitor

    Did you made any changes to your distributor? Did you disable the replication?

  • RE: DBCC checkdb report error

    If it fails and you need help with the restore process, here is many people who can give you advice.

    Good luck!

  • RE: DBCC checkdb report error

    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...

  • RE: Retail App: Will SQL Server work?

    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,...

  • RE: Backup End

    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...

  • RE: DBCC checkdb report error

    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...

  • RE: Where is my email?

    You mail client must be configured to use MAPI.

  • RE: VSS

    I don't think you could use VSS with SQL because the objects are not save into independent files. You could create a job to periodically scripts the Sp and check...

  • RE: SQL Workfiles

    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.

    ...

  • RE: stored procedure

    Shout if you need help!

  • RE: Deletes&free space.

    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:

  • RE: Deletes&free space.

    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...

  • RE: Deletes&free space.

    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....

Viewing 15 posts - 661 through 675 (of 1,098 total)