Forum Replies Created

Viewing 15 posts - 1,036 through 1,050 (of 1,291 total)

  • RE: Running batch file from ssms

    By Looking at the error. you are using USE, GO , SELECT Keywords in batch file, which are SQL commands and cannot be run in dos prompt, the error is...

  • RE: Sql server Virtual Memory

    From SSMS, run this

    SELECT * from sys.sysperfinfo where COUNTER_NAME LIKE '%TOTAL SERVER MEMORY%'

    Alternately, use Performance Monitor and look for Memory Manager Object.

    Check this link http://technet.microsoft.com/en-us/library/ms190924%28SQL.90%29.aspx

  • RE: tsql query

    SELECT [Name] FROM MASTER..SYSDATABASES

    Should give the list of all Databases in that Server (Instance)

    To get it in all Servers, I am not aware of this, in SQL 2005. But...

  • RE: Processor Partitioning

    GilaMonster (11/17/2009)


    Neither of those limits processor usage by database. Table partitioning is just breaking a table into multiple chunks, possibly on different filegroups, resource governor controls resource usage based...

  • RE: How to connect to an Oracle database

    Gift Peddie (11/17/2009)

    There is no fixed location for TNSNAMES.ORA file I have installed it in both C and D drive

    I have mentioned that location quoting my present server and...

  • RE: How to connect to an Oracle database

    klineandking (11/17/2009)


    i also wanted to know what the TNSNAMES.ORA means or what it does in your reply to my post, what is it for?

    TNSNAMES.ORA is a Network Configuration file in...

  • RE: Detach db failed

    From the error description, it looks like the Database Files (Set of Database Files) are not matching and system cannot continue to attach the Database.

    So check and make sure all...

  • RE: SSIS Error Code DTS_E_OLEDBERROR

    What is the Package Protection Level?

    Under what security context is the SQL Agent running.

    I have been working on SSIS packages and believe me it is not a straightforward...

  • RE: Monitoring Processes on SSAS

    Starting from SQL 2005, SQL Server Profiler has the ability to trace what's currently running on the SSAS.

    I recommend using the profiler to begin with.

  • RE: Processor Partitioning

    GilaMonster (11/17/2009)


    Processors can only be 'affinitised' per instance. What I would suggest is that you 'encourage' the developer to optimise his queries. Large table does not automatically mean high processor...

  • RE: Processor Partitioning

    I am not sure if there exists a feature in SQL Server 2000.

    Database partitioning is available in SQL 2005 / 2008, but it does not partition the processor workload.

    Resource...

  • RE: Cannot create jobstep in maintenance plan

    This may sound strange, I had a similar kind of issue couple of years back, (SQL 2005) when trying to modify / create Maintenance Plans from Management Studio on my...

  • RE: Backup large database for datawarehouse

    Lynn Pettis (11/17/2009)

    Been there, done that in other areas. Not a biggie.

    😉

    I learnt a quick lesson... Do not reply to a post while talking over phone. 🙂

  • RE: Backup large database for datawarehouse

    Yes Lynn you are right.

    I forgot the Basic one.

  • RE: Backup large database for datawarehouse

    You can start with a Weekly Full backup and daily Differential backup (if needed twice a day).

    Monitor the Database growth over a few weeks period, and then decide to go...

Viewing 15 posts - 1,036 through 1,050 (of 1,291 total)