Forum Replies Created

Viewing 15 posts - 661 through 675 (of 1,344 total)

  • RE: T-SQL Teaser

    The best way is to do it on the client.

    but you can perform this in a function.

     

    -- =============================================

    IF EXISTS (SELECT *

        FROM   sysobjects

        WHERE  name = N'fn_ConcatStrings')

     DROP FUNCTION...

  • RE: Getting rid of the transaction Log

    You don't want to "Fix" the size of the transaction log unless you make it a reasonable size, even though your in simple recovery mode sql server will need the...

  • RE: Eliminate timeout when posting reply to a post

    Happens to everyone I think.

    Usually if I'm working on a long post, I'll Put the entire message into the clipboard. so if it does happen I don't lose anything.

    I think...

  • RE: Change logical name to DB files

    When you restore your test db you should use the

    WITH MOVE option to rename your files.

    You cannot rename the files of a database.

     

  • RE: Queries against a partitioned view

    I'm just guessing here, but are you joining views to views?

    On a partitioned system I worked on exhibited this behavior when I joined views together.

    Also, the optimizer...

  • RE: SQL Server 2000 Standard Licensing

    Yeah, I'm not exactly sure.

    Hopefully someone will pick up on this thread and clear it up.

  • RE: Remove individual items from toolbar plausable?

    You cannot do it from the "Standard" Reporting services browser.

    You'll have to build your own pages. Even then your stuck with the paging defined in the rdl.

     

  • RE: SQL Server 2000 Standard Licensing

    I think your architecture would lean more towards Processor licensing. Much like a web application only the application connects to the sql server, and an unknown amount of users connect...

  • RE: Mail to be sent based on data

    Go to microsoft and search on Notification Services.

     

    They made this "add on" similar to Reporting services that will do exactly what you are talking about.

     

     

  • RE: Exporting data and keeping the primary key

    You should create the tables in a different step.

    In enterprise manager you can use generate Sql script to generate the tables you want.

    In enterprise manager, right click on the database...

  • RE: Exporting data and keeping the primary key

    When you say export are you talking DTS Export wizard?

    When exporting does table b exist in destination database?

    If yes, then whatever properties are on that table are not modified.

    If no,...

  • RE: Large Numbers of Reports

    Simple approach would be to create folder structure within report manager. You can put description on each folder, and each report.

     

  • RE: HELP, Sql Issues

    Are the servers in diffent Domains?

    Are you going across a firewall?

    Can you ping the other server?

  • RE: Update the first row only

    -- Heres one way

    create table #TableOne (partNo int identity, TotalQty int)

    Insert into #TableOne (TotalQty)

    select 10 union

    Select 500 union

    select 333

    Create table #TableTwo (SalesNo int identity, PartNo int, StartAvailable int)

    Insert into...

  • RE: Create record in Table B based upon results of criteria applied to table A

    this is an insert into.

    Where the results of your select will be entered to the table on the insert. You did not indicate where the information for the city and...

Viewing 15 posts - 661 through 675 (of 1,344 total)