Forum Replies Created

Viewing 15 posts - 511 through 525 (of 691 total)

  • RE: Trigger problem in SQL Server 7

    Many times EM functionality doesn't work properly until the item affected is refreshed.  I would first try refreshing the table in question (right click and select refresh), then the database...

  • RE: Does adding a column cause table fragmentation

    To defrag a table (data), you simply defrag (or rebuild) the clustered index.  If your table doesn't have a clustered index, you can still defrag it by creating a clustered...

  • RE: SQLServer2000 vs SQLServer6.5

    However, you can use SQL 2000 Query Analyzer to query 6.5 databases.  Also, you can "open" a table using object browser by right clicking on it and selecting "open". 

    Steve

  • RE: Enormous logfile growth

    Another option would be to break your delete into smaller batches with a "CHECKPOINT" between them. The checkpoint will initiate a log truncation and should help keep your log smaller.

    Steve

  • RE: Stop dbo from deleting rows ?

    Change the owner of the database to "SA".

    Steve

  • RE: HELP! lost 7.0 Local Instance

    You say that the mssqlserver service IS started, but you can't start the "instance".  The mssqlserver service IS the "instance".  If the service is running, SQL 7.0 is running.  You...

  • RE: Is a "delete" really 100% gone?

    David, Thanks.  Having worked in a government installation, I know where he is coming from.  I don't remember specifics, but in sensitive data processing, when you delete a record, it...

  • RE: Is a "delete" really 100% gone?

    Hey Antares686, did you try doing a reindex?

    Steve

  • RE: Is a "delete" really 100% gone?

    If you decide to go the route of replacing your secret data with "garbage data" before deleting the record, there is something else you must consider.  If your "garbage data" is much...

  • RE: Concat separate name fields into one

    declare

     @Prefix varchar(10),

     @FirstName varchar(10),

     @MiddleName varchar(10),

     @LastName varchar(10),

     @Suffix varchar(10),

     @First_Group varchar(50),

     @Last_Group varchar(50),

     @FirstLastName varchar(100),

     @LastFirstName varchar(100)

    set @Prefix = ''

    set @FirstName = 'Jeff'

    set @MiddleName = 'L'

    set @LastName = 'Bagwell'

    set @Suffix = 'Jr'

    set @First_Group =

     rtrim(isnull(@Prefix,''))

     +...

  • RE: Backup Possessive or Performance hog ???

    There's nothing wrong with your backup command.  I copied it to my machine, changed the path and db to match my system, and executed it without a problem. 

    If you're...

  • RE: Multiple backup devices/parallel backup

    If I understand what you are trying to do, I would suggest backing up to the local machine, and then ftp or copy the backup files to the remote machines.

    Steve

  • RE: Backup Possessive or Performance hog ???

    "name" sounds a little suspicious for a server name.  Are you sure that's right?

    Check whether SQL Server Agent is running under the system account or a domain account:  In Enterprise...

  • RE: Convert from US dollar to UK pounds

    Is this what you're looking for???

    declare @char nvarchar(10)

    set @char = '$10.00'

    print @char

    select @char = replace(@char, '$', nchar(163))

    print @char

    --Steve

  • RE: Backup Possessive or Performance hog ???

    Sorry, just saw your "no room on local drives" message.

    UNC:

    \\servername\c$\Directory\filename

    where "c" = server's drive letter

    Steve

Viewing 15 posts - 511 through 525 (of 691 total)