Viewing 15 posts - 1 through 15 (of 57 total)
this is not OS related problem, Verify that the specified path has sufficient disk space for the file, also make sure specified path has required permissions in place for SQL...
December 13, 2013 at 5:40 am
as mentioned by Grant, parameter sniffing does make you query slow. I personally experienced it.
go through below article.
http://blogs.technet.com/b/mdegre/archive/2012/03/19/what-is-parameter-sniffing.aspx
December 10, 2013 at 4:31 am
try to add user to profile as below
EXEC msdb.dbo.sysmail_add_principalprofile_sp
@profile_name = 'Profile_Name'
, @principal_name = 'Login_Name'
, @is_default = 1;
December 10, 2013 at 4:19 am
DECLARE @sql varchar(max)
SET @sql = 'Update '+ @baseTable +' set Quantity = s.Quantity
from ' + @baseTable +' p , '+ @stageTbl +' s
where...
December 10, 2013 at 4:13 am
refer below articles..
https://www.simple-talk.com/sql/backup-and-recovery/partial-backup-and-restore/
http://www.mssqltips.com/sqlservertutorial/27/sql-server-partial-backups/
December 6, 2013 at 5:10 am
basically from your secondary server you should be able to access backup folder, try to login to your secondary server with SQL Service account user name and password and then...
December 5, 2013 at 1:55 am
give SQL service account full access to this folder
December 5, 2013 at 1:32 am
make sure your SQL service account has the rights to access network path.
December 5, 2013 at 12:36 am
go through below article to get an idea about SQL backups.
http://www.mssqltips.com/sqlservertutorial/6/types-of-sql-server-backups/
December 5, 2013 at 12:28 am
seems to be complex, but you can try this..
SELECT pv.NAME , min(ID) id, Candy , Chocolate from (
SELECT Name , Candy , Chocolate from
...
December 4, 2013 at 2:53 am
try this
EXEC master.dbo.sp_addlinkedsrvlogin
@rmtsrvname = N'<REMOTE_SERVER>',
@locallogin = N'AppLogin',
@useself = N'False',
@rmtuser = N'Basic_Login',
@rmtpassword = N'<Basic_Login_Password>'
December 3, 2013 at 11:44 pm
i don't think it is possible to identify RAID config in windows unless you have installed vendor software on it
December 3, 2013 at 11:23 pm
Viewing 15 posts - 1 through 15 (of 57 total)