Viewing 15 posts - 3,931 through 3,945 (of 9,707 total)
Grant Fritchey (9/19/2012)
1. Check DB Integrity
2. Back Up Db Full
3. Back up Db transaction log
4. Shrink Db
5. Rebuild index
6. Update...
September 19, 2012 at 7:07 am
How many statuses do you have? If it's 10 or less, your performance may be increased if you switch that WHERE clause to say something like Status IN ('Active','Expired',...'n').
September 19, 2012 at 4:41 am
Ah, a mystery unraveled. Thank you for clarifying, Anthony. That helps my understanding of the issue somewhat.
September 18, 2012 at 7:37 am
But if Dynamics NAV is a Microsoft product, they should be smart enough to understand the difference between a snapshot and a real database. It's simple enough for anyone to...
September 18, 2012 at 7:15 am
Glad we could help. Enjoy your learning.
September 18, 2012 at 4:29 am
It doesn't make sense to me that a client tool outside of the actual SQL engine would be inserting data into a database snapshot. I do think you should call...
September 17, 2012 at 10:37 am
FYI: When you try to connect to the Local instance, it's not supposed to be connected as MSSQLServer(Local). It's just (local).
But first you need to get your remote connections...
September 17, 2012 at 4:58 am
Okay, I'm a little confused. I thought you said it was the Dynamic NAV client that was doing the insert, now you're saying it's not.
If it's not the Dynamic NAV...
September 17, 2012 at 4:42 am
Let me ask this first. Have you searched the internet for possible solutions yet?
If so, what search phrase / words did you use?
September 17, 2012 at 4:39 am
josuecalvo (9/14/2012)
September 17, 2012 at 4:34 am
jrichards54 (9/14/2012)
September 14, 2012 at 12:30 pm
CREATE TABLE is a control permission, not an alter permission. Alter is implied by having control.
Use this:
GRANT CONTROL ON SCHEMA::<mySchema> TO <myLogin>
You can only use the "CREATE TABLE" permission specifically...
September 14, 2012 at 12:14 pm
Read this link for reasons why Lynn chose 103 and what all those numbers mean:
September 14, 2012 at 12:08 pm
kriki-503680 (9/14/2012)
No, I am talking about database snapshots.
And no, they are not writeable. It just happens that the Dynamics NAV-client decided to write some record to...
September 14, 2012 at 11:42 am
I was unaware that database snapshots were writable. Everything I've ever learned is that only the engine can write to a db snapshot and everyone else can only read off...
September 14, 2012 at 9:46 am
Viewing 15 posts - 3,931 through 3,945 (of 9,707 total)