Forum Replies Created

Viewing 15 posts - 181 through 195 (of 611 total)

  • RE: error with ssrs

    sqlfriends (12/19/2016)


    Thank you, let me check it

    I forgot, both should ideally have the same value (in seconds) otherwise one could timeout before the second has finished.

  • RE: Table Replication.

    If the update touches columns with a unique constraint and you try to insert a duplicate value into that column then it will be rejected.

    That said, if you have merge...

  • RE: SLow Perfomance from select query . from mssql to dblink to oracle

    ODBC or OLE-DB?

    Have you also created a linked Server from Oracle to SQL Server?

    Where do you write the query that you execute?

    A good practice here is to create...

  • RE: SSRS error

    No forward compatibility......you need to install the SSRS version that is expected.

  • RE: BCP Error - Trying to import 2billion rows from text file to table in SQL server

    How is your tempdb configured? Is autogrowth turned off?

    12bn rows is a lot of data and the recommendaion from earlier about the Batch Size is definately something to look...

  • RE: how to restore 12 gb backup file it on sqlserver 2012

    shashianireddy (12/20/2016)


    I have 12.5 GB database backup file.i want to restore it on SQL Server 2012 ,when i m restore database then it shows Executing(100%) I wait 2 hours but...

  • RE: Table copy

    Rechana Rajan (12/20/2016)


    Why cant you create a new table and insert into that all records and delete the unwanted data from original table ? This will make sure...

  • RE: Need to find out exact crash time

    I am pretty sure that you will find a critical error in the Windows Application Log for SQL Server.

  • RE: error with ssrs

    In the web.config file is one parameters: httpRunTime ExecutionTimeout .

    In rsreportserver.config is the Parameter DatabaseQueryTimeout

    Check to see if these values are appropriately set for your Environment / Report.

  • RE: CDC

    chewychewy (12/18/2016)


    Hi kevaburg,

    thanks for your advise. I'm actually looking for a real time replication solution for replication (including ddl) from sql server to oracle.

    thanks much

    Ah, now I understand. The...

  • RE: How to modify query to only use base tables

    I did not think of that...that would make a lot of sense....

  • RE: How to modify query to only use base tables

    I must admit that this time I have no idea what is expected. The query is OK, so I am not sure what else could be expected....

  • RE: moving sql2005 database to sql2014

    You could also use Detach / Attach to do the migration.....

    Between these versions that works well......

  • RE: How to modify query to only use base tables

    allenjoey24 (12/18/2016)


    I think that might be what it meant. So is it asking me to modify my queries so that instead of referencing a column on a table like Table.Column...

  • RE: Table copy

    I had a similar Problem and used an Archive table for records that aren't currently active.

    On a regular Basis you can copy the rows from MyTable into ArchiveTable and then...

Viewing 15 posts - 181 through 195 (of 611 total)