Forum Replies Created

Viewing 15 posts - 826 through 840 (of 1,098 total)

  • RE: the sql learning method

    The quickest way to learn is asking here!! and reading the articles, too.

    If think that what you are saying about accessing memory objects, Pages/Sec

    is about the counters in Performance Monitos...

  • RE: OLE Automation Extended SPs - Permissions

    You must deny the execution permission, not revoking

  • RE: Reset databases to dbo

    You can execute sp_changedbowner in the db

  • RE: error 20598

    If you have the row that needs to be updated then maybe you should check the code of the stored procedure. Check that is has the correct number of variables...

  • RE: Dialup Replication

    If you are going to use replication with dial up you must send not too much data, so I would recommend you use Transactional replication to send only the incremental...

  • RE: BULK INSERT in Transaction

    The BULK INSERT statement can be executed within a user-defined transaction. Rolling back a user-defined transaction that uses a BULK INSERT statement and BATCHSIZE clause to load data into a...

  • RE: Create a Trigger or Stored Proc on another DB

    If you create an stored procedure begining with sp_ in the master, then you can use it from any database like all the stored procedures that come with SQL.

    ...

  • RE: losing primary key for snapshot publication

    Do you have those primary keys on the publisher? You could also use transactional publications for the needs you have. If you have a big database, maybe you should check...

  • RE: Log IP address of remote login attempts

    You could log the host name of the machine, and if you want you could create a scrip to execute a ping to the host and resolve and catch the...

  • RE: system tables- backupfile,backupmediafamily etc.

    try creating an empty file with the same name and extension that your backup file, and then execute the sp_dropdevice stored procedure to delete in a clean way the backups...

  • RE: Differential database file size

    Could by but the differential backup doesn't log the changes of data in transactions, it only saves changed data pages. When a full backup is made, there is one page...

  • RE: error 20598

    It isn't about the version of the sp. It is in every replication store procedure. Usually the error number 20598 fires when no rows are affected by the insert,...

  • RE: Copied MDF file. Now the DB won't restore

    If you have the mdf and ldf file, you can try attaching the db to your server. If your files are from a backup database sentence, then you must use...

  • RE: add extra column to insert to read in a trigger

    you can't insert a value in a field that doesn't exists. Maybe you can create a new table from the original table an create the trigger on that table. For...

  • RE: What else does an MDF contain?

    You also have the IAM pages, that increase when you have more pages. I don't remember the exact value but it think you have one page for every 8000 data...

Viewing 15 posts - 826 through 840 (of 1,098 total)