Forum Replies Created

Viewing 15 posts - 31 through 45 (of 51 total)

  • RE: Cannot remove log file

    Thanks.

  • RE: Cannot remove log file

    That is the logical name. The physical name would be I:\log4.ldf

  • RE: Differences between SQL Server 2008 and SQL Server 2008 R2

    I am currently using SQL 2008 (I have both standard and enterprise editions) with SP1. Do I need to re-license my SQL 2008 products to use SQL 2008 R2?

    Thanks

  • RE: Assumptions

    The one size fits all backup strategy. Backup strategy driving the recovery instead of recovery needs determining the backup strategy.

  • RE: How many Records Will Get Selected

    No matter if it's a bad question or a trick question. The answer is one. The question was "How many records are returned from the last SELECT?". ...

  • RE: -isnull

    If I remove the - sign, I get a positive value, with it I get a negative value. But further down there is another similar query that does the...

  • RE: -isnull

    You could be correct. But why not use the ABS() function. It would be clear and sort of self-documenting. We are going to ask the vendor to...

  • RE: -isnull

    At first, I thought maybe that would be what it was, but the results of the query return a positive value for column d

  • RE: -isnull

    select isnull(sum(u.quantity),0) as q, -isnull(sum(u.linecost),0) as d

    from matusetrans u

    where u.issuetype in ('ISSUE','RETURN')

    and u.transdate< 200912

  • RE: Database Size

    Actually, the initial size of the database is the size specified in the model database.

  • RE: SSIS with Stored Procedure

    It's a user defined stored procedure.

    exec dbo.spFuelSAWA_Output

    One parameter @WeekEnding which is a datetime.

    I might have found a work around it by creating a user defined function that...

  • RE: Partion Number

    Fabulous. Thanks!

  • RE: Altering Partition Scheme and Function

    I am also having issues with modifying partition schemes using existing data.

    Here's what I have done:

    1. Created filegroup and added files

    2. ALTER PARTITION SCHEME partition_scheme_name NEXT...

  • RE: Naming a boat

    Yes, I realized it after I saved.

  • RE: SQL ERROR LOG

    Right Click SQL Server Agent in SSMS and select Properties.

Viewing 15 posts - 31 through 45 (of 51 total)