Viewing 15 posts - 376 through 390 (of 486 total)
July 26, 2013 at 3:53 am
Two options are to use the pre and post execute options in the publication to run scripts so you could have the objects created via script instead of replicated. ...
July 26, 2013 at 3:41 am
EXEC sp_who2 active
That will get you started, although you can also query master.dbo.sysprocesses.
July 26, 2013 at 3:36 am
Performance issues can be caused by so many factors from hardware issues, inefficient code, out of date statistics, bad execution plans the list could go on and on.
You need to...
July 15, 2013 at 9:36 am
Giving them access to a hosted VM may be an option as we will not allow any sort of remote access into our network due to some of the sensitive...
July 11, 2013 at 11:05 am
At the moment no SQL server development has been done a d if they agree with the POC we will then pursue creating the entire database within the customers data...
July 11, 2013 at 10:30 am
Capturing a "deadlock graph" via server side trace or profiler can be used to capture the xml for the actions causing the deadlock. the xml can be saved as...
July 11, 2013 at 9:42 am
While a database is active you cannot backup the mdf, ndf, ldf files (remember these don't have to be the file extension, they are just microsoft's naming convention).
Some 3rd Party...
July 11, 2013 at 9:35 am
As the database will be readonly you wont be able to make any changes to it specifically.
So your best bet is to create the login at botht he primary and...
July 11, 2013 at 9:26 am
The books are good to get you started but a word of warning, the example questions supplied with the MS Press books are not even close to the level of...
July 11, 2013 at 9:22 am
Is there any errors reported in the SQL Server Error log within management in SSMS or any errors written to the windows event logs?
February 19, 2013 at 4:57 am
To get the output of a stored procedure for a single value you can use a select for example
CREATE PROCEDURE Test AS
BEGIN
SELECT 10
END
Then have your execute...
June 21, 2012 at 8:09 am
I assume you are running SSMS on a remote machine and not directly on the server. If so check the regional settings on your machine.
March 9, 2012 at 8:28 am
As far as I am aware only Sysadmins have permission to view the SQL Agent monitor. One alternative is to provide access through a custom coded dashboard that runs...
March 9, 2012 at 8:26 am
Is this a set structure, the data does not look particulary normalised.
March 9, 2012 at 8:21 am
Viewing 15 posts - 376 through 390 (of 486 total)