Forum Replies Created

Viewing 15 posts - 7,711 through 7,725 (of 8,760 total)

  • RE: Upgrading SSRS from 2000 to 2008

    scarydba (7/21/2014)


    I am trying to upgrade SQL 2000 reporting services to SQL 2008. I backed up the ReportSever and ReportServer TempDB and restored successfully, However when I try to restore...

  • RE: T-SQL to add 7 days to ship date

    It is better to break down the problem into smaller parts using nested case statements, more readable and easier to follow. Here is an example which should be close to...

  • RE: SSIS and BIDS

    previn1980 (7/26/2014)


    Sorry if I do not understand.

    So, SSDT is an integrated CLIENT tool in Visual Studio which replaces BIDS for develops etl packages/processes. Is it right?

    If so, what's the...

  • RE: TDE and Page/Row level compression

    GilaMonster (7/26/2014)


    Before you apply compression to everything, test and make sure that the CPU overhead is acceptable. On page compression it can get nasty. Also don't compress indexes unless you...

  • RE: Are the posted questions getting worse?

    GilaMonster (7/26/2014)


    Eirikur Eiriksson (7/26/2014)


    The good thing about SSC is that when I make blunders I am immediately told off:pinch:

    :Whistling:

    Didn't take long :blush:

    Thanks!!!

    😎

  • RE: SSIS and BIDS

    previn1980 (7/26/2014)


    Eirikur Eiriksson (7/26/2014)


    First of all, welcome to the forum. SQL Server 2012 has a new approach to the Business Intelligence via the Data Tools, look for SSDT instead of...

  • RE: SSIS and BIDS

    previn1980 (7/26/2014)


    Hi to all

    I want use for practice and learning purpose the SQL Server Integration Services ETL tool and Business Intelligence Developement Studio to builds/develop packages/etl processes.

    What I want ask...

  • RE: Do you usually go to agencies?

    Lynn Pettis (7/26/2014)


    I'm going to say it depends. When first starting to work with one, almost necessary to get a feel for the recruiter and the company. Sometimes...

  • RE: TDE and Page/Row level compression

    smtzac (7/26/2014)


    I have a huge database 600+ GB and it is TDE enabled. I want to make database smaller. I found some tables are more than 1 million rows and...

  • RE: How to get most recent and oldest from the the joins to a child table

    Here is a very efficient Window Function method, one scan of each table.

    😎

    USE tempdb;

    GO

    DECLARE @Employee TABLE (EmployeeID INT, EmployeeName VARCHAR (100), EmployeeDOB DATE)

    INSERT @Employee VALUES (101, 'James Bond', '07/07/1945'), (102,...

  • RE: how to check data with in range in fdate and tdate in sql server

    pietlinden (7/25/2014)


    If you post proper CREATE TABLE scripts and INSERT scripts to populate your table(s), you will probably get an answer...

    10 minutes preparing the data sample, 1 minute writing the...

  • RE: Running Total on 2 columns

    Here is a Window function running total example, performs quite nicely;-)

    😎

    USE tempdb;

    GO

    create table #current(acctNum int,

    dates date,

    transtype char(10),

    amt INT

    )

    insert into #current(acctNum, dates, transtype, amt)

    values (11,'7/1/2014','debit',1),

    (11,'7/2/2014','debit',3),

    (12,'7/3/2014','credit',5)

    create table #balance (acctNum int,

    AsOfDate date,

    balance INT

    )

    insert...

  • RE: Are the posted questions getting worse?

    Koen Verbeeck (7/26/2014)


    Eirikur Eiriksson (7/26/2014)


    Koen Verbeeck (7/26/2014)


    Sean Lange (7/25/2014)


    Eirikur Eiriksson (7/25/2014)


    Sean Lange (7/25/2014)


    Eirikur Eiriksson (7/25/2014)


    Jeff Moden (7/25/2014)


    Sean Lange (7/25/2014)


    WOW!!! If you have ever wondered about the quality of responses at...

Viewing 15 posts - 7,711 through 7,725 (of 8,760 total)