Viewing 15 posts - 361 through 375 (of 1,068 total)
Folder security property...
Right click on the folder->Properties->Security->Edit->Add...
December 19, 2011 at 1:36 am
Looks like your SQL Server service account has no permission to delete.
December 19, 2011 at 12:39 am
Mani-584606 (12/15/2011)
...But still, sometimes performs the Index defrag for all databases and sometimes it's NOT performing for couple of databases and sometimes skipps only one database..
The script you posted is...
December 18, 2011 at 11:14 pm
I think you are restoring wrong TLOG backup file. See the difference in the file names in the BACKUP and RESTORE commands.
In BACKUP command it is mydb.TRN. In RESTORE it...
December 15, 2011 at 10:16 pm
I would not answere these questions, becuase there are many candidates who apply for jobs with FAKE experience in their resume.
They get anwers for all the possible interview questions from...
December 14, 2011 at 11:50 pm
Welcome.
Happy to know that it is working.
Don't forget to DENY CREATE and DROP as well.
December 14, 2011 at 11:45 pm
Try this.
EXCLUDE those packages and rebuild the project.
December 13, 2011 at 4:26 am
USE TSQLFundamentals2008;
SELECT CAST (AVG (LineItems)AS DECIMAL (8,4))
AS AvgLineItems FROM
(SELECT orderid, CAST (COUNT (productid)AS DECIMAL (8,4))
AS LineItems
FROM Sales.OrderDetails
GROUP BY orderid)AS AvgCount
December 13, 2011 at 12:50 am
Becuase it is returned by AVG function (SELECT AVG (LineItems)AS AvgLineItems).
Use CAST in the outer SELECT.
December 12, 2011 at 11:03 pm
Dpac (12/12/2011)
I had to create an alias to the distributor on the publisher to solve the issue. Thanks
Thanks for posting the solution. It will help others.
December 12, 2011 at 10:11 pm
Instead of REVOKE, use DENY.
If the user is sysadmin server role member, you cant stop them.
December 12, 2011 at 10:00 pm
mark.jr1 (12/8/2011)
December 9, 2011 at 3:35 am
Dpac (12/8/2011)
...this failure may be caused by the fact that under the default settings SQL Server does not allow remote connections.".
Check whether remote connection is enabled or not.
December 9, 2011 at 1:05 am
Link to sample databases http://msftdbprodsamples.codeplex.com/releases/view/4004
December 8, 2011 at 12:06 am
Viewing 15 posts - 361 through 375 (of 1,068 total)