Viewing 15 posts - 16 through 30 (of 60 total)
all the features we are talking about SQL server 2016 are of enterprise edition but for sql server std edition u can only guess
normal trend is that features...
July 2, 2015 at 5:48 am
select DB_NAME(mf.database_id) database_name
, mf.name logical_name
, CONVERT (DECIMAL (20,2) , (CONVERT(DECIMAL, size)/128)) [file_size_MB]
, CASE mf.is_percent_growth
WHEN 1 THEN 'Yes'
ELSE 'No'
END AS [is_percent_growth]
, CASE mf.is_percent_growth
WHEN 1 THEN CONVERT(VARCHAR, mf.growth) + '%'
WHEN 0 THEN...
July 2, 2015 at 5:45 am
HI warning Is because u r using the expression in where clause .. avoid that use something else whose output will be same as ur expression or satsisfy u r...
June 16, 2015 at 1:04 am
http://www.sql-server-performance.com/2014/trouble-shooting-sql-server-ra-memory-consumption/
Go through this .. its quite a useful for reindexing and update stats .. by my colleague and friend satnam singh
June 16, 2015 at 12:43 am
ola's scripts are the perfect . but u can use sql server maintenance plan and few job also to this task. also configure some mannual alerts if the something goes...
June 16, 2015 at 12:39 am
get the All SQL server under u r control. check the maintainenace task on all server . ensure valid backups are taking place . and all required acees ...
June 15, 2015 at 6:19 am
GilaMonster (6/14/2015)
If you don't care about the database, drop it.
+100000000
June 15, 2015 at 3:19 am
June 15, 2015 at 2:15 am
have u thought of using sharepoint ?
June 15, 2015 at 2:08 am
Yes You are not supposed to create all the indexes. if u create one then there lots of chances are few will become redundant. so analyse them and create one...
June 15, 2015 at 2:04 am
Try to login with system admin account and check the permissions of the account you are currently using
May 27, 2015 at 7:20 am
http://www.sqlservercentral.com/articles/Reporting+Services+(SSRS)/124961/
today's post by SSC
see if it helps
May 21, 2015 at 3:18 am
Viewing 15 posts - 16 through 30 (of 60 total)