Viewing 15 posts - 1,036 through 1,050 (of 1,291 total)
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...
November 17, 2009 at 5:23 pm
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
November 17, 2009 at 5:17 pm
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...
November 17, 2009 at 1:07 pm
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...
November 17, 2009 at 12:44 pm
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...
November 17, 2009 at 11:35 am
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...
November 17, 2009 at 11:00 am
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...
November 17, 2009 at 9:37 am
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...
November 17, 2009 at 9:32 am
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.
November 17, 2009 at 9:23 am
GilaMonster (11/17/2009)
November 17, 2009 at 8:38 am
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...
November 17, 2009 at 8:27 am
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...
November 17, 2009 at 8:16 am
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. 🙂
November 17, 2009 at 7:53 am
Yes Lynn you are right.
I forgot the Basic one.
November 17, 2009 at 7:37 am
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...
November 17, 2009 at 7:24 am
Viewing 15 posts - 1,036 through 1,050 (of 1,291 total)