Viewing 15 posts - 2,626 through 2,640 (of 7,164 total)
What does this say when run against the Publisher, the Distributor and the Subscriber:
SELECT SERVERPROPERTY('Edition') AS Edition,
SERVERPROPERTY('ProductVersion') AS ProductVersion,
...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
December 27, 2012 at 9:44 am
Post the complete result of this:
USE [YourDatabase];
DBCC CHECKDB WITH NO_INFOMSGS;
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
December 27, 2012 at 9:42 am
tz.bahrami (12/27/2012)
How about polymorphism in sql? Could we use stored procedures for polymorphism?
And for nested relationships can we define an attribute as OId and use it in a select...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
December 27, 2012 at 9:31 am
In order to change the owner of a database you must have exclusive access to it. Restarting the SQL Server service will not help if the application immediately reconnects to...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
December 27, 2012 at 9:10 am
MG-148046 (12/27/2012)
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
December 27, 2012 at 8:54 am
sotn (12/27/2012)
For NUMA harware, every SQL Server I've looked at, in processors, says NUMA node 0 etc and then split into the cores/processors. does this mean it is NUMA enabled?
More...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
December 27, 2012 at 8:31 am
Progress. From the remote server what do you get when you run these:
EXEC('SELECT ORIGINAL_LOGIN() as logged_in_login;') AT [ServerName];
EXEC('SELECT * FROM msdb.dbo.sysjobs WHERE name = ''8A427655-9A6E-43F0-9A28-95C7A8F781B1'';') AT [ServerName];
Did the first one...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
December 27, 2012 at 8:21 am
Here is some available reading on the topic that may help you gain a deeper understanding of what things to consider before implementing your database:
Object-relational impedance mismatch, From Wikipedia
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
December 26, 2012 at 4:30 pm
S_Kumar_S (12/26/2012)
I have a table with identity column as PK.It is accessed by millions of users at a given time. Now there are 2 columns for which if there...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
December 26, 2012 at 11:31 am
SQLRNNR (12/26/2012)
Sean Lange (12/26/2012)
SQLRNNR (12/26/2012)
Daniel Bowlin (12/24/2012)
wrappingunwrapping
cleanup
break/fix
patch
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
December 26, 2012 at 11:04 am
TheSQLGuru (12/25/2012)
opc.three (12/24/2012)
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
December 26, 2012 at 9:40 am
Mac1986 (12/24/2012)
EXECUTE AS LOGIN = 'Redmond\MyServiceAccount'
GO
SELECT SUSER_SNAME()
GO
EXEC...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
December 26, 2012 at 9:22 am
Chances are the path "%systemroot%\System32\WindowsPowerShell\v1.0\" was removed from the PATH system environment variable. Removing the path to powershell.exe from the PATH variable made it impossible for you to refer to...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
December 24, 2012 at 1:47 pm
Have you heard of Central Management Server (CMS)? It supports the "interact with each server in a server group from PowerShell" functionality that I think you are after.
If setting up...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
December 24, 2012 at 1:34 pm
It should say "physical cores" instead of "physical processors." I would set it to 6 for the number of physical cores per NUMA node. If you're still seeing too much...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
December 24, 2012 at 12:08 pm
Viewing 15 posts - 2,626 through 2,640 (of 7,164 total)