Viewing 15 posts - 376 through 390 (of 1,155 total)
Nice. You are welcome 🙂
--
SQLBuddy
March 3, 2014 at 1:01 pm
mxy (3/3/2014)
how do we estimate/calculate procedure cache usage
Use this query ..
SELECT name,
[MB used] = SUM(single_pages_kb + multi_pages_kb)/1024.0
FROM ...
March 3, 2014 at 12:41 pm
I think he is trying to normalize table 1 more to table 2. It's normalization problem... What's the PK of table 1
--
SQLBuddy
March 3, 2014 at 12:37 pm
MyDoggieJessie (3/3/2014)
March 3, 2014 at 12:31 pm
Robert Graff (9/11/2013)
Jack Corbett (9/11/2013)
March 3, 2014 at 12:20 pm
Check if SQL Server is up and running ?
--
Best Regards,
SQLBuddy
March 3, 2014 at 11:21 am
Do you do Index Maintenance and index rebuilds ? Also see if you can find any missing indexes.
Is this 32 bit or 64 bit ? What are your memory settings...
March 3, 2014 at 11:15 am
SQL ORACLE (6/2/2008)
BACKUP DATABASE [database2] TO DISK = '\\myServer\C$\myDB.bak'
Follow this advice from SQL ORACLE. It works
--
SQLBuddy
March 3, 2014 at 9:44 am
bubby (3/3/2014)
How to do that? I have no replication set up, I do not see any Local Publications,
If you don't have replication, run this query and check the result ..
SELECT...
March 3, 2014 at 9:38 am
Dennis Post (3/3/2014)
Is this a 32 bit system? The memory pools used by SQL Server in a 32 bit system sometimes needed help. Especially if you were moving around a...
March 3, 2014 at 9:22 am
sram24_mca (3/3/2014)
I am getting the following error in two SQL Server 2008 servers[Production]. This happens usually every two days for a month now. The SQL Server log dump is below.
SQL...
March 3, 2014 at 9:01 am
bubby (3/3/2014)
How can I find it, space is at auto growth 10%
Rt Click on DB --> Tasks --> Shrink --> Files --> Change File Type to Log , Check the...
March 3, 2014 at 8:55 am
bubby (3/3/2014)
Need Help,
I have SQL 2008 R2, Database XYZ in simple recovery mode, the database log is growing very face, no maintenance in place, the log size grows about 1GB...
March 3, 2014 at 8:47 am
yuvipoy (3/3/2014)
apart from the new approaches like cdc, cte ,....(big long list)........
Here will i be gained...
March 3, 2014 at 8:39 am
fmaruf (3/3/2014)
Hi All,Can we upgrade database from SQL Server 2005 Enterprise edition to SQL Server 2012 Standard Edition?
Thanks in advance.
Could you tell us why you are trying to move from...
March 3, 2014 at 8:32 am
Viewing 15 posts - 376 through 390 (of 1,155 total)