Forum Replies Created

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

  • RE: In SQL Active/passive Cluster how to find which is passive?

    Look to see if you have Cluster Manager. If so, open that and find the resource for SQL Server and see which node (server) is shown as active.

    -SQLBill

  • RE: What is a common front end instead of Access?

    Depends on what you want the front-end application to do....

    Crystal Reports is great for making reports and charts.

    -SQLBill

  • RE: Help Me

    Okay, the 2pm Full backup is not any good for you. Forget about it.

    You need to backup the current transaction log if you can.

    Restore the full backup from BEFORE...

  • RE: Anyone know what a Master$4IDR file is?

    Sure, IF YOU DON"T WANT BACKUP EXEC TO WORK ANYMORE! (sorry for the all caps, I just want to emphasize what I'm saying).

    Those files are necessary for Backup Exec 9.x...

  • RE: Anyone know what a Master$4IDR file is?

    Let me look into my Crystal Ball.......ummm I see that you have Veritas Backup Exec 9.x installed.

    Read your documentation on BE 9.x. It says that if you have to restore...

  • RE: A Quick question.

    Post examples of how your dates currently look. That will help us come up with a way to convert them to DATETIME.

    -SQLBill

  • RE: the logfile for data xyz is full backup transaction log per the database to create space

    You can run BACKUP LOG xyz WITH TRUNCATE_ONLY.

    That will free up some space. However, you need to find out why the log file is full.

    Are you doing backups? If not,...

  • RE: Learning T-SQL

    Check out the SQL Server Books OnLine.

    It's installed as part of the Client Tools and can be found at Start>Programs>Microsoft SQL Server>Books OnLine.

    Or go to Microsoft's web site. Search for...

  • RE: Access Remote SQL Server

    I don't use network utilities, so I can't help with that.

    However, what Port does your home SQL Server use? If it's the default then it's listening on 1433. Check...

  • RE: Dates? Weekly range for any given date.

    DOH! I can't believe I missed that. Thanks for catching and figuring it out.

    I'm glad I was able to point you in the right direction.

    -SQLBill

  • RE: Dates? Weekly range for any given date.

    Try this:

    DECLARE @mydate VARCHAR(10)

    SET @mydate = '2004-05-21'

    SELECT GETDATE() - (DATEPART(DW, @mydate) -1) AS Sunday,

               GETDATE() + (7 - (DATEPART(DW, @mydate))) AS Saturday

    -SQLBill

  • RE: Transaction log full bacup or clear up space message

    First, have you ever done a full backup?

    If not, that's the very first thing you need to do. And do it right now.

    Then backup the transaction log.

    It's very easy to...

  • RE: tempdb backup transaction log

    Or if you do have enough space, you don't have TEMPDB set to automatically grow fast/large enough.

    -SQLBill

  • RE: Space problem in SQL Server

    You've set it right and it's not the max allowed that is the problem. You probably have the database set to autogrow. What is it set to grow by? With...

  • RE: update

    Peter,

    Transaction logs have to be applied to a full backup that was done BEFORE the transaction logs are backed up. This is why SQL Server advises that you backup your...

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