Viewing 15 posts - 496 through 510 (of 5,394 total)
Trust me: losing backups is much more expensive than SAN disks.
If you back up your SQL Server to the same machine where the server runs and the server fails, you...
May 12, 2015 at 2:52 am
AK1516 (5/11/2015)
I have used CTE to overcome the issue
You could post your solution then: it would benefit future readers that run into the same problem.
A possible solution is to get...
May 12, 2015 at 2:50 am
What does "use LOOP" mean? Can you please clarify?
May 12, 2015 at 2:36 am
Backing up to a local disk is a terrible idea. Why do you think you need to do that?
May 12, 2015 at 2:33 am
Raising the logging level show you some warnings that you can safely ignore. I would revert to the original level.
Try this registry change to enable additional logging to a file:...
May 12, 2015 at 2:21 am
LIKE would do as well:
WHERE ex NOT LIKE '%[^A-G0-9]%'
May 11, 2015 at 10:21 am
...will it affect the Always On...
OUCH! I missed this part...
May 11, 2015 at 10:02 am
Looks like a good place for partitioning. If you can make your table partitioned on the predicate you use for deletes, gettin rid of that data can be a simple...
May 11, 2015 at 9:45 am
OK, it looks like the data is not there or is not accessible.
Same places to look for information:
-- From the monitored server
SELECT * FROM msdb.dbo.syscollector_config_store; -- this shows you if...
May 11, 2015 at 7:10 am
I strongly suggest starting another thread for your question.
Post back the url here and I promise I will try to help you.
May 11, 2015 at 6:39 am
You could compute changes to the clustered index as updates to the table (insert/delete/update).
I have a script here: http://spaghettidba.com/2015/04/20/tracking-table-usage-and-identifying-unused-objects/
Save index usage stats on a daily basis and compare with the...
May 8, 2015 at 7:12 am
The configuration is stored in the RSreportserver.config file. It's not trivial to shred the file in T-SQL, nor I think it's the right tool for the job.
May 8, 2015 at 7:09 am
xsevensinzx (5/8/2015)
GilaMonster (5/8/2015)
xsevensinzx (5/8/2015)
May 8, 2015 at 6:47 am
Please post the actual code, otherwise it's impossible for us to help
May 8, 2015 at 3:50 am
Viewing 15 posts - 496 through 510 (of 5,394 total)