Forum Replies Created

Viewing 15 posts - 886 through 900 (of 3,666 total)

  • RE: One Database vs. Multiple Databases

    Valid points, but if your databases are all on the same server, one customer can still affect others.

    As far as disk IO is concerned, there are things you can do...



    Alvin Ramard
    Memphis PASS Chapter[/url]

    All my SSC forum answers come with a money back guarantee. If you didn't like the answer then I'll gladly refund what you paid for it.

    For best practices on asking questions, please read the following article: Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: One Database vs. Multiple Databases

    Picture this .... you get 1 million schools ... 1 million databases to manage!

    Would be much easier to manage one database.

    I know there's many other points to consider, but from...



    Alvin Ramard
    Memphis PASS Chapter[/url]

    All my SSC forum answers come with a money back guarantee. If you didn't like the answer then I'll gladly refund what you paid for it.

    For best practices on asking questions, please read the following article: Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: Conversion failure varchar to int

    You can't do: SELECT @count = (Select COUNT(*) FROM [dbo]. + @TableStat);

    You need to build a string that has the query you want to execute, then execute that string.



    Alvin Ramard
    Memphis PASS Chapter[/url]

    All my SSC forum answers come with a money back guarantee. If you didn't like the answer then I'll gladly refund what you paid for it.

    For best practices on asking questions, please read the following article: Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: SSIS - Validating Data

    I don't like using the error output when I can remove the erroneous data myself. I would do it differently.

    I would add a condition split in the data flow to...



    Alvin Ramard
    Memphis PASS Chapter[/url]

    All my SSC forum answers come with a money back guarantee. If you didn't like the answer then I'll gladly refund what you paid for it.

    For best practices on asking questions, please read the following article: Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: Year summary report

    Would the query below be a better starting point for you?

    SELECT

    DATEPART(Year, [date]) AS [Year]

    ,DATEPART(Month, [date]) AS [Month]

    ,SUM(pyd_amount)

    FROM paydetail p

    WHERE p.itm_code in ('A','B','C','D')

    and [date] between '1-1-2014' and '1-31-2014'

    ORDER...



    Alvin Ramard
    Memphis PASS Chapter[/url]

    All my SSC forum answers come with a money back guarantee. If you didn't like the answer then I'll gladly refund what you paid for it.

    For best practices on asking questions, please read the following article: Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: Divide by zero error encountered.

    farrukhhameed786 (12/15/2014)


    Hi

    Please Below the query i need to use condition

    I need to use in below query how to use

    SELECT

    ISNULL(EVT.VAL1/NULLIF((EVT.VAL2),0),0) AS ITEM_ID

    FROM

    EVENT1 EVT

    WHERE NAME IN ('JOHN','PATRICK')

    You need...



    Alvin Ramard
    Memphis PASS Chapter[/url]

    All my SSC forum answers come with a money back guarantee. If you didn't like the answer then I'll gladly refund what you paid for it.

    For best practices on asking questions, please read the following article: Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: Do I need to install analysis services on new server?

    If you don't see any SSAS database on SQL 2005 then it looks like you are not using it and therefore don't need to install it.

    You can install it later...



    Alvin Ramard
    Memphis PASS Chapter[/url]

    All my SSC forum answers come with a money back guarantee. If you didn't like the answer then I'll gladly refund what you paid for it.

    For best practices on asking questions, please read the following article: Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: Unit-Testing SSIS 2008 packages

    I'm not aware of anything like that existing.

    Sounds like you will have to create your own.



    Alvin Ramard
    Memphis PASS Chapter[/url]

    All my SSC forum answers come with a money back guarantee. If you didn't like the answer then I'll gladly refund what you paid for it.

    For best practices on asking questions, please read the following article: Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: Export to Text, CSV, or Excel through web app

    aliens218 (12/11/2014)


    Hi all, I'm looking for a solution where end users can click a web button to download the results of query (sp or view). I know I could...



    Alvin Ramard
    Memphis PASS Chapter[/url]

    All my SSC forum answers come with a money back guarantee. If you didn't like the answer then I'll gladly refund what you paid for it.

    For best practices on asking questions, please read the following article: Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: Rebuilding a pk index

    chulheekim (12/11/2014)


    I think I heard something like if it is more than 50% fragmented, then it has to be rebuilt. If Reorg will do its job, I will do ...



    Alvin Ramard
    Memphis PASS Chapter[/url]

    All my SSC forum answers come with a money back guarantee. If you didn't like the answer then I'll gladly refund what you paid for it.

    For best practices on asking questions, please read the following article: Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: SSMS restarts daily on remote desktop

    I don't understand what you mean by "restart".



    Alvin Ramard
    Memphis PASS Chapter[/url]

    All my SSC forum answers come with a money back guarantee. If you didn't like the answer then I'll gladly refund what you paid for it.

    For best practices on asking questions, please read the following article: Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: NO COUNT

    Actually, this was a badly worded question.

    The question was asking how many rows will be affected. It should have been asking what message will be displayed.

    (I got the correct...



    Alvin Ramard
    Memphis PASS Chapter[/url]

    All my SSC forum answers come with a money back guarantee. If you didn't like the answer then I'll gladly refund what you paid for it.

    For best practices on asking questions, please read the following article: Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: SQL Server 2012 to excel

    Phil Parkin (12/11/2014)


    First, I am assuming that you confused 'BB' and 'CC' in your sample data and query.

    It would probably be easier to use T-SQL to get your data into...



    Alvin Ramard
    Memphis PASS Chapter[/url]

    All my SSC forum answers come with a money back guarantee. If you didn't like the answer then I'll gladly refund what you paid for it.

    For best practices on asking questions, please read the following article: Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: SQL Server 2012 to excel

    How much do you know about using Integration Services?



    Alvin Ramard
    Memphis PASS Chapter[/url]

    All my SSC forum answers come with a money back guarantee. If you didn't like the answer then I'll gladly refund what you paid for it.

    For best practices on asking questions, please read the following article: Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: Are the posted questions getting worse?

    Koen Verbeeck (12/10/2014)


    Grant Fritchey (12/10/2014)


    Weirdest thing, my subscription to The Thread got turned off. I just figured after a couple of weeks you guys had finally given up on this...



    Alvin Ramard
    Memphis PASS Chapter[/url]

    All my SSC forum answers come with a money back guarantee. If you didn't like the answer then I'll gladly refund what you paid for it.

    For best practices on asking questions, please read the following article: Forum Etiquette: How to post data/code on a forum to get the best help[/url]

Viewing 15 posts - 886 through 900 (of 3,666 total)