Viewing 15 posts - 256 through 270 (of 1,158 total)
Rottengeek (10/5/2012)
October 5, 2012 at 2:52 pm
The maximum concurrent connections is 32767 (its an integer) but due to connection pooling these tend to get recycled very rapidly.
You can monitor the number of concurrent connections using this...
October 5, 2012 at 2:49 pm
ramyours2003 (10/5/2012)
Can we add secondary datafile with out restoring the log backup with move cmd to the secondary server?If yes , how ?
No.
Perry Whittle (10/5/2012)
October 5, 2012 at 8:59 am
Konuri Dinesh (9/27/2012)
my requirement like this
i have total 40 Servers, now i have to create one DB in one server then it should reflect in all servers i.e automatically...
October 4, 2012 at 1:39 pm
It will. The only restriction is on certain datatypes and that the distributor needs to be equal or higher to the highest version.
http://msdn.microsoft.com/en-us/library/ms143241%28v=sql.105%29.aspx
October 4, 2012 at 10:57 am
If you had any published databases, try changing the the db option before running sp_dropdistributor as this is the standard process I follow.
USE [Database]; EXEC sp_removedbreplication 'Database'
GO
USE [Database1]; EXEC sp_removedbreplication...
October 3, 2012 at 2:42 pm
SQL Guy 1 (10/3/2012)
As a workaround, can I create a replication without distributor ?
No
SQL Guy 1 (10/3/2012)
Or a distributor on a subscriber side ?
Any sql server can be...
October 3, 2012 at 2:39 pm
Have you tried adding a distribution database and then running sp_dropdistributor?
October 3, 2012 at 2:36 pm
I apologize. I misread the original post that suggested there was an issue with permissions.
Data is not restricted on a permission basis. Either you can read the data...
October 3, 2012 at 9:21 am
Use this function to establish the permissions of both users.
SELECT * FROM fn_my_permissions(NULL, 'SERVER');
GO
SELECT * FROM fn_my_permissions('Sales.vIndividualCustomer', 'OBJECT')
ORDER BY subentity_name, permission_name ;
GO
http://msdn.microsoft.com/en-us/library/ms176097.aspx
It sounds...
October 3, 2012 at 8:56 am
You could create a SQL Account with sysadmin permissions and use this to do the detach/attach. It should work if the service account has host admin priviledges but it...
October 1, 2012 at 8:18 am
nelsonaloor (9/27/2012)
September 27, 2012 at 11:28 pm
SteveEClarke (9/27/2012)
Sorry - the question is ;How can I create a view inserting repeated records based on the calculation of two fields;
If you use my suggestion, you could remove QtrPer...
September 27, 2012 at 1:50 am
SteveEClarke (9/27/2012)
Okay - my challenge today, is that I need to create some labels for a "Picking List" ( BOM ) - One lable per component required.Table ONE
WorksOrder
ParentPart
QtyToMake
Table TWO
WorksOrder
Component
QtyPer
Also I...
September 27, 2012 at 1:42 am
SteveEClarke (9/27/2012)
Table ONE
WorksOrder
ParentPart
QtyToMake
Table TWO
WorksOrder
Component
QtyPer
View will...
September 27, 2012 at 1:35 am
Viewing 15 posts - 256 through 270 (of 1,158 total)