Forum Replies Created

Viewing 15 posts - 766 through 780 (of 1,170 total)

  • RE: Get Mirosoft Access data

    You can add and use Access as linked server but only if your Office installation is a 64bit as SQL Server is.

    EXEC sp_addlinkedserver

    @server = 'AccessTest'

    ,@provider...

  • RE: Timing Issue

    Try to make a log of the executions/SPs in order to locate your issue. It seems the executions order and theirs finishing times are important in your case.

  • RE: Memory & Backup Issues

    D.Schrenker (12/5/2013)


    I will preface this by stating we are using MS SQL Server 2008 R2.

    We're having issues when our database backups are running SQL Server takes all of the...

  • RE: How to execute sqlcmd

    How is your set up in the sys.sp_configure?

    you can run this for any case:

    exec sys.sp_configure 'show advanced options',1

    reconfigure with override

    go

    exec sys.sp_configure 'xp_cmdshell',1

    reconfigure with override

    go

    Regards

    IgorMi

  • RE: Best way to monitor datafile and log file grow

    Hi

    You can use the performance monitor (perfmon.exe) by choosing "Log growths" and "Data file(s)" under the MSSQL$Instance:Databases for a specific database.

    Regards,

    IgorMi

  • RE: Why SQL server didn't see my Table definition?

    GilaMonster (12/2/2013)


    You have to alias table variables, and wrapping the table variable name in [] tells SQL that the table in question is a real table in the user database...

  • RE: SSIS Package error

    Hi

    You have data conversion incompatibility. Check what are doing your "Data conversion" and "OLE DB Source" components and whether it corresponds to the respective data types of the columns in...

  • RE: Order My Data

    Carlo Romagnano (12/2/2013)


    Koen Verbeeck (12/2/2013)


    Evgeny (12/1/2013)


    What is wrong with this answer?

    CREATE NONCLUSTERED INDEX IDX_A ON #temp1(a)

    +1

    Why is this answer "incorrect"?

    Flawed question today, better luck next time đŸ™‚

    It's wrong because...

  • RE: RCSI - Read Committed Snapshot Isolation

    PiMané (12/2/2013)


    IgorMi (12/1/2013)


    RSCI will increase a lot the usage of the tempdb. You should have ready tempdb.

    Did you make indexes analysis? Aren't there a lot of missing indexes?

    How about queries,...

  • RE: RCSI - Read Committed Snapshot Isolation

    RSCI will increase a lot the usage of the tempdb. You should have ready tempdb.

    Did you make indexes analysis? Aren't there a lot of missing indexes?

    How about queries, are they...

  • RE: Order My Data

    All options are true except this one

    "CREATE CLUSTERED INDEX IDX_A ON #temp1(i,a)"

    You should correct your question.

  • RE: How can i check a reseed statement has been run on a table

    Hi

    The increment of an identity column (user_id) is not rollback-able. So if you're having rollback transactions than the seed value will just go forward.

    Regards,

    IgorMi

  • RE: Checking Up on Developers

    One mistake is the overdozed usage of cursors. In most of the cases cursors can be replaced with set-based statements.

    One another mistake is the implicit conversion in queries because of...

  • RE: MINIMUM & MAXIMUM Memory in SQL 2012

    Koen Verbeeck (11/26/2013)


    IgorMi (11/26/2013)


    Hi,

    These settings I've done on a client machine with RAM of 128 GB were following:

    max server memory set to 112 GB

    min server memory set to 64...

  • RE: MINIMUM & MAXIMUM Memory in SQL 2012

    Hi,

    These settings I've done on a client machine with RAM of 128 GB were following:

    max server memory set to 112 GB

    min server memory set to 64 GB

    My suggestion for...

Viewing 15 posts - 766 through 780 (of 1,170 total)