Viewing 15 posts - 8,551 through 8,565 (of 39,771 total)
If the users don't have rights, meaning a user mapped, in those databases, they can't do anything. You cannot hide these in SSMS, so you need to be sure there...
February 22, 2016 at 10:46 am
Triggers can move data, perform an insert/update/delete when there is an insert, update, delete operation on a table. The advantage of a trigger is it is always run when data...
February 21, 2016 at 5:18 pm
I agree with Orlando. An i5 runs fine. My laptop has been an i5, 16GB for the last year, and I run virtual machines with multiple instances of SQL ...
February 21, 2016 at 5:09 pm
I agree with Jeff in that the exam doesn't cover real world examples. If you want to see how a particular feature might be used in the real world, search...
February 21, 2016 at 5:06 pm
There are liscencing guides available for each edition:
2012: above
How are you licensed now? If you are licensed per processor, you need to license all processors on both servers....
February 21, 2016 at 4:58 pm
If you have a filestream container in this database, you might need to look at using a WITH MOVE here. I don't have a 2008 instance, but you potentially must...
February 18, 2016 at 1:17 pm
Sent a note off to see if we can track down the issues.
February 18, 2016 at 12:15 pm
Eric M Russell (2/18/2016)
Yes, that's my point exactly: what tool can compare scripts in VSC versus deployed in production? To pull that off developers would have to follow a regid...
February 18, 2016 at 12:13 pm
It isn't clear what you mean. This is best described with some code to show what you mean by move.
If you mean you have a timer in your application that...
February 18, 2016 at 8:43 am
A RAM disk isn't any different from another disk to SQL Server. If you can't add space to the files on that disk, either you have no space, a quota...
February 18, 2016 at 8:41 am
LIKE queries are not useful in FULLTEXT indexes. You'd need queries to use CONTAINS or FREETEXT in the WHERE clause.
February 18, 2016 at 8:22 am
Best practice is to monitor space and add space before it is needed. Adding space can interfere with your workload and slow the server down. You also get fragmented files....
February 18, 2016 at 8:20 am
BWFC (2/18/2016)
February 18, 2016 at 8:16 am
thisisfutile (2/17/2016)
February 17, 2016 at 12:00 pm
djj's solution works, whether you have more or less:
DECLARE @a VARCHAR(100)
SELECT @a = 'aaa'
SELECT LEFT(@a, 50)
SELECT @a = 'aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa'
SELECT LEFT(@a, 50)
However, if you truncate data, make sure clients know there...
February 17, 2016 at 11:31 am
Viewing 15 posts - 8,551 through 8,565 (of 39,771 total)