Viewing 15 posts - 5,806 through 5,820 (of 22,211 total)
Brandie Tarvin (7/30/2015)
July 30, 2015 at 8:04 am
Brandie Tarvin (7/30/2015)
Work...
July 30, 2015 at 6:09 am
Yeah, you should check out Minion Reindex[/url]. It's part of the MinionWare suite[/url]. It's a free piece of software and is quite excellent. I wrote up a review of it...
July 30, 2015 at 4:37 am
Do a LIKE search where you have wild cards on the starting side of the predicate
LIKE '%a1'
Is going to cause scans and prevent index use. I would strongly advise attacking...
July 30, 2015 at 4:35 am
I'm seeing two different MERGE commands, no CTEs in sight.
July 30, 2015 at 4:30 am
Here's an article[/url] I wrote on how to deal with versioned data. One of these solutions should work well for you.
July 30, 2015 at 4:28 am
You can create the view using WITH SCHEMABINDING. That will prevent the table from being modified. Here's the CREATE VIEW syntax.
July 30, 2015 at 4:27 am
Try it with explicit transactions, separating the ALTER command from the others.
July 30, 2015 at 3:59 am
Just use Powershell. Here's an example script that will do what you need.
July 30, 2015 at 3:58 am
You might be facing a bit of an issue here. I'm assuming you're planning to do log shipping after a restore to get the 2000 database to 2014? The problem...
July 30, 2015 at 3:56 am
There's a service that gets installed with SQL Server called SQL Agent. You can use that to schedule your backups. Here's the documentation on the service. It's very straight forward...
July 29, 2015 at 4:01 am
owen_zeng (7/29/2015)
hi,we have two way to upgrade sql server.
1.sql server upgrade guide
2.instal a new instance with higher version.backp&restore to the new instance.
which way is better?and what is the difference.
thanks.
Situationally,...
July 29, 2015 at 3:59 am
Table variables also don't have statistics. Sometimes, this is a great thing. Sometimes it's a horrible thing. But it's one of the biggest differences between table variables and temporary tables.
July 28, 2015 at 3:51 pm
And remember, the order of the keys on the indexes matters quite a bit, especially for the first column since that determines what is in the histogram of the statistics....
July 28, 2015 at 10:43 am
If the disk has gone bad, that should have shown up in the wait statistics. You didn't see any changes tehre at all?
July 28, 2015 at 10:40 am
Viewing 15 posts - 5,806 through 5,820 (of 22,211 total)