Viewing 15 posts - 7,516 through 7,530 (of 22,213 total)
There are also a number of limits on data types. There are no foreign keys supported. Not all T-SQL statements are supported. It's a very specialized set of functionality.
September 3, 2014 at 3:40 am
You should run the SQL Server 2014 Upgrade Advisor.
September 2, 2014 at 3:41 pm
The basic approach is to record the behavior of your queries in 2008. Get the execution times, resources used, and, for really interesting queries, the execution plan. Then do the...
September 2, 2014 at 10:30 am
The page latches could be from slow disk, or memory issues, or stuff like that, sure. But, it could also be from scans where seeks would work better because bad...
August 31, 2014 at 1:13 pm
No certifications at all and my salary is more than adequate. I also seriously doubt I would be paid more if I had an MCSE or almost any other cert...
August 27, 2014 at 5:00 pm
Kulgan_ (8/27/2014)
In addition... when You do the "select *" DB still have to grab all the data from disk... If columnstore index would include all columns then in theory this...
August 27, 2014 at 5:24 am
ChrisM@Work (8/26/2014)
Grant Fritchey (8/26/2014)
August 26, 2014 at 10:38 am
You can't do this through the backup and restore process, no. You'd have to build some type of data migration. That's possible, just a lot of work.
August 26, 2014 at 4:30 am
Nice Chris, you took away my two comments, on the RIGHT JOIN getting turned into an INNER JOIN and that awful string manipulation against a column. Those were my two...
August 26, 2014 at 4:29 am
ramana3327 (8/25/2014)
Thanks for the replies.
I read that for migration we can schedule log backup or differential backup to reduce the downtime. Anyone did this? I need the downtime as...
August 26, 2014 at 4:19 am
If it only takes one minute to rebuild your indexes, we're talking very small data sets. It sounds like you have a growth limit placed on your log file or...
August 26, 2014 at 4:18 am
I'd suggest monitoring the backup process and see what the wait statistics are while the backups are running. Understanding why the backups might be waiting on anything will let you...
August 25, 2014 at 1:56 pm
There is no downgrade path. It's just a question of migrating your data structures and data down to the older version. Personally, I wouldn't do it.
If you're seeing performance issues,...
August 25, 2014 at 8:35 am
1 or 3. But you should do the backups even if you do #3. The backups should just be how you protect yourself.
August 25, 2014 at 8:23 am
Nope. Access doesn't use Transact SQL and the full T-SQL stack supported by SQL Server.
August 25, 2014 at 8:16 am
Viewing 15 posts - 7,516 through 7,530 (of 22,213 total)