Viewing 15 posts - 46 through 60 (of 271 total)
You get this error when there is something wrong in the io path. This can be many things hardware problems, driver issues, anti virus software etc.
There is no easy place to...
April 6, 2007 at 10:13 am
The answer is incorrect.
The statement provided
ALTER QUEUE PublicationQueue
WITH ACTIVATION (
PROCEDURE_NAME = new_stored_proc,
EXECUTE AS SELF) ;
would actually set the activation status to on as this is the...
February 24, 2007 at 7:12 pm
Not being funny but try reading BOL and if you then still have some problems post a psecific question and I am sure someone will be please to help.
If you...
February 19, 2007 at 4:30 pm
Rick is correct bit I believe this problem was fixed in SP1 although I am using the CTP of SP2 at the moment on my dev box so it might...
February 12, 2007 at 4:17 pm
February 11, 2007 at 11:57 pm
SQLExpress can only be a subscriber in the replication topology so if both your instances are SQLExpress this is not an option.
Also you would need to have installed SQLExpress with...
February 10, 2007 at 5:25 am
It would help if you could post the script it created.
David
February 10, 2007 at 5:13 am
Not really the answer you want but in sql server 2005 using database mail is much more efficient as it uses service broker and is therefore asynchronous in nature. Also...
February 9, 2007 at 7:08 am
Setting up replication through the wizards in 2005 is no bad thing but once you have created it you should script this out so that the replication can be easily...
February 8, 2007 at 3:47 pm
You should do this through EM.
Here's nice we article on the MS website which explains
http://support.microsoft.com/kb/283811
hth
David
February 6, 2007 at 1:15 pm
This is because someone is connected to the database. If anyone is accessing the database you will be prevented
from restoring it.
If you look in activity monitor you will see...
February 4, 2007 at 5:45 am
This article should be helpful
http://www.sqlservercentral.com/columnists/sjones/removeduplicate.asp
it is also possible to remove duplicates rows using CTEs in sql server 2005
WITH
Dups AS
February 4, 2007 at 5:39 am
February 1, 2007 at 3:50 pm
You could try something like
SELECT EmployeeID, Salary, (SELECT COUNT(*)
FROM Salaries AS S2
WHERE S2.Salary < S1.Salary OR (
S2.Salary = S1.Salary AND S2.EmployeeID <= S1.EmployeeID) AS Rank
FROM...
January 29, 2007 at 1:31 pm
Have you checked your firewall rules? as thats the other usual candidate
David
January 29, 2007 at 1:11 pm
Viewing 15 posts - 46 through 60 (of 271 total)