Forum Replies Created

Viewing 15 posts - 2,041 through 2,055 (of 2,387 total)

  • RE: Insufficient System Memory

    Here is an example.

    [boot loader]

    timeout=30

    default=multi(0)disk(0)rdisk(0)partition(2)\WINNT

    [operating systems]

    multi(0)disk(0)rdisk(0)partition(2)\WINNT="Microsoft Windows 2000 Advanced Server (3GB)" /3GB /fastdetect

  • RE: Update the SQL Server SP3 on Desktop problem

    Is MSDE in this developer's machine. If not, you can't use SQL2KDeskSP3.exe to update the client tools. Instead, you have to use SQL2KSP3.exe to do it.

  • RE: SQL 2000 Cluster install

    Jeff is right. You have to add the logical disks name of physical RAID5 and RAID1 to SQL Server cluster group before you can use them.

  • RE: Maximum number of prefixes

    cneuhold,

    Please try it.

  • RE: How long last a log backups ?

    It shouldn't take that long. Run sp_who2 active to see are there any blocking and whether this backup process is runnable status. And you may try "backup log pubs to...

  • RE: database catalog corruption

    You may try to run DBCC CHECKDB with 'REPAIR_ALLOW_DATA_LOSS' option to see whether you can fix it. But as system objects seems damaged, you better have full database backup ready...

  • RE: Insufficient System Memory

    As you already know, SQL Server standard edition can't use more than 2GB memory. But I am thinking your problem may not be just the shortage of memory that you...

  • RE: Deletes&free space.

    As racosta already explained, the fress spaces can be used by any objects. If your database does not have sufficient spaces when you insert data or create new tables, the...

  • RE: Deletes&free space.

    Run sp_spaceused @updateusage = true before and after the deletion and you will see the difference (unused pages) in your database.

  • RE: Linked Server : MS Access 97

    I have seen same issue but no ideas why it works in this way. You don't have to give everyone 'sa' to run query against it. Instead, create a generic...

  • RE: Exporting a maintenance plan?

    Each job created by maintenance plan has planid attached and you can't simply script it, transfer and run it in another server.

    Maybe you could try Profiler to trace the exact...

  • RE: Insufficient System Memory

    How much avaiable memory did you have at time your job failed? Which version SQL Server you are ruuning?

    In order to allocate memory than 2GB to SQL Server, you have...

  • RE: restore master database

    Are you able to start SQL Server and Agent services after master database restoration completion? Try to login SQL Server with EM or ISQL to verfiy following.

    1. Your SQL Server...

  • RE: Maximum number of prefixes

    After linked server setup and table PPC_2lists created, you can use

    insert into dplads01.earthlink.dbo.PPC_2lists

    select * from dplads03.peoplepc.dbo.PPCMP200302

    where list in ('0099', '0157')

  • RE: linked server error

    Run Client network utility in Server 1 to create server alias to Server 2 first and create linked server in server 1 with the alias to link to server 2....

Viewing 15 posts - 2,041 through 2,055 (of 2,387 total)