Viewing 15 posts - 1,111 through 1,125 (of 7,168 total)
If you go through Object Explorer use the Script Button to see what would be run if you clicked OK. To be safe I would recommend just running the ALTER...
May 15, 2013 at 11:23 pm
In my experience, and know that if you ask 10 people it's possible to get 10 different answers, a "Production DBA" does environment support and is usually on-call 24/7 for...
May 15, 2013 at 11:14 pm
USE [master]
GO
EXEC xp_instance_regwrite
N'HKEY_LOCAL_MACHINE',
N'Software\Microsoft\MSSQLServer\MSSQLServer',
N'DefaultData',
REG_SZ,
N'C:\ new data file path...'
GO
EXEC xp_instance_regwrite
...
May 15, 2013 at 5:14 pm
cms9651 (5/15/2013)
I tried this code in sql server, but I've this error.
Can you help me?
I would really appreciate any help.
sp_configure 'Allow Updates',
0;
RECONFIGURE WITH override;
EXEC...
May 15, 2013 at 2:42 pm
That's always a tough assignment. Can you interact with the live database? If so, start inspecting the queries in the plan cache to see how data clients are interacting with...
May 15, 2013 at 2:02 pm
What kind of alert? That the OS is low on memory? How low?
You have max memory set but that only pertains to the buffer pool. Did you check to see...
May 15, 2013 at 2:00 pm
SQLRNNR (5/15/2013)
bcsims 90437 (5/15/2013)
opc.three (5/14/2013)
Deflated (Warriors lost)Inflated
Knicks Lost 😀
Elated 😛
May 15, 2013 at 11:26 am
Look into your split of read to writes by database. Check performance counters over time to see where your bottleneck is, all systems are constrained by something. Look at your...
May 15, 2013 at 8:04 am
There are many types of DBAs. System, Development/Application, Production Support, to name a few. The responsibilities of each type actually vary widely, and within each type they can change based...
May 15, 2013 at 8:00 am
Apples and Oranges. LINQ is an application programming technology that allows us to abstract the querying of "things" in a generic way. SQL is for interacting with data in relational...
May 15, 2013 at 2:31 am
sql-lover (5/10/2013)
Is Resource Governor supported on SQL 2012 Standard edition? 🙁
Unfortunately not. From Features Supported by the Editions of SQL Server 2012:
May 15, 2013 at 2:14 am
tempdb is a special database when it comes to redefning the initial size. Unlike other databases you can actually ALTER the files to be smaller than their current size without...
May 15, 2013 at 2:09 am
There is not nearly enough information to say definitively what you should buy. It will depend on the data access patterns you have in your environment, the number of transactions...
May 15, 2013 at 2:01 am
sql.hopper (5/15/2013)
....
reported as link spam
May 15, 2013 at 2:00 am
Tickets? As in "what will you be asked to do when you take a job as a DBA?" Are you considering interviewing for a DBA job or are you already...
May 15, 2013 at 1:54 am
Viewing 15 posts - 1,111 through 1,125 (of 7,168 total)