Viewing 15 posts - 3,721 through 3,735 (of 7,164 total)
Are you manually growing your database files on a regular basis, or are your database files auto-growing regularly? What made you realize you were running low on disk space? When...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
June 26, 2012 at 2:57 pm
ScottPletcher (6/26/2012)
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
June 26, 2012 at 2:43 pm
Yes, I did, and I am sure a lot of other people have as well. The people that leave reviews on Amazon are the ones that used the book as...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
June 26, 2012 at 2:32 pm
Exam 70-433: TS: Microsoft SQL Server 2008, Database Development > Preparation Materials
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
June 26, 2012 at 1:51 pm
robert.tuniewicz (6/26/2012)
SQL2, 3 and 4
Edition: Enterprise Edition 64bit
Product/Version: 10.0.4311
ProductLevel: SP2
on SQL1
Edition: Enterprise Edition 64bit
Product/Version: 10.0.4064
ProductLevel: SP2
SQL1 and 2 are in a cluster. So when I...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
June 26, 2012 at 1:38 pm
Can you please post the results of this from all 4 instances, so we're all on the same page?
SELECT SERVERPROPERTY('Edition') AS Edition,
...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
June 26, 2012 at 1:09 pm
robert.tuniewicz (6/26/2012)
SQL1 & SQL 2 are part of of Windows 2008 R2 Cluster.
SQL3 is my...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
June 26, 2012 at 12:53 pm
Basic question, maybe nothing, but you gave us the generic error message:
"...Cannot insert duplicate key row in object 'TableName' with unique index 'IndexName'..."
Do the TableName and IndexName pertain to the...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
June 26, 2012 at 12:26 pm
Keeping all data in one table, but using a separate filegroup for blobs is a good way to go, and simple.
CREATE TABLE dbo.Personnel
(
PersonnelID INT NOT NULL
...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
June 26, 2012 at 12:17 pm
Yes, it is a picture of Robert Hays as Ted Striker. I am not sure if you can see the detail in the picture but it's from the scene when...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
June 26, 2012 at 11:41 am
schleep (6/26/2012)
Confirmed.Set-Location SQLSERVER:\SQL\MyServer\Default\Databases\MyDB\StoredProcedures
dir | select name
does not return any system sprocs. I wonder why the repl sprocs would fall into the user category.
Weird...
P
Indeed. This was quite an entertaining exercise nonetheless...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
June 26, 2012 at 11:08 am
From the OP's code, modified for my machine for demo:
Add-PSSnapin SqlServerCmdletSnapin100 -ErrorAction SilentlyContinue
Add-PSSnapin SqlServerProviderSnapin100 -ErrorAction SilentlyContinue
Set-Location SQLSERVER:\SQL\MyComputer\MyInstanceName\Databases\MyDataseName\StoredProcedures
Get-ChildItem | Select Name
I only receive a list of user-defined procs.
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
June 26, 2012 at 9:58 am
Issuing separate logins for separate responsibilities to the report writers would allow you to cordon off certain DBs for certain logins they are issued.
Or you could tell them to stop...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
June 26, 2012 at 8:13 am
The messages logged by SQL Agent are limited, and formatting is removed making it difficult to read. Might I suggest piping the output of your job step to a file...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
June 26, 2012 at 8:08 am
schleep (6/26/2012)
This will exclude all non-user objects. I assume they're probably not required anyway.Get-ChildItem | where {$_.IsSystemObject -eq $false}
That brings up a good point. I have replication enabled in my...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
June 26, 2012 at 7:55 am
Viewing 15 posts - 3,721 through 3,735 (of 7,164 total)