Viewing 15 posts - 6,436 through 6,450 (of 49,571 total)
g.britton (3/13/2015)
GilaMonster (3/13/2015)
March 16, 2015 at 2:57 am
yuvipoy (3/13/2015)
As i said in my first post i am able to open and create/write/delete files in \\mynetwork\yuvipoy\ path.
Which is utterly irrelevant as the account that's running the sp_create_trace is...
March 16, 2015 at 2:54 am
Bear in mind that it's not at all uncommon for sorts to spill. The sort operation requires a lot of memory and, as such, most sorts that affect larger row...
March 16, 2015 at 2:42 am
Can we see the query and execution plan please? There's lots of guessing happening, but hard to say what's really happening without seeing details.
March 16, 2015 at 2:34 am
You need to grant permission on the share and folder (the ones in Windows) to the account that SQL Server runs under.
If you don't have permissions on the windows server...
March 13, 2015 at 7:51 am
The main thing that immediately comes to mind is that you're missing brackets.
AND takes precedence over OR, meaning without brackets, your WHERE clause actually means
(b.field1 LIKE 'ABC' AND b.field2 BETWEEN...
March 13, 2015 at 7:44 am
You need to grant the account which SQL Server runs under permission to access the share. If the service account is not a domain account, it first needs to be...
March 13, 2015 at 7:28 am
The account that SQL Server is running under (the SQL Server service account) does not have permission to the share.
I don't recommend saving a trace across the network. The network...
March 13, 2015 at 6:55 am
Toby Harman (3/13/2015)
-- Don't touch this code
-- It does fancy statistical...
March 13, 2015 at 6:17 am
Be careful of using a function in a constraint. The constraint only gets checked when the table that it is on changes. If the table that the function reads from...
March 13, 2015 at 3:12 am
As a counter-example of when you would wrap something in BEGIN TRAN ... ROLLBACK:
I do a lot of performance tuning. As such, I have to run procedures so that I...
March 12, 2015 at 4:35 am
A trigger on the base table for the view.
March 11, 2015 at 10:04 am
"Fully denied" would be claims that have 1 or more "3" and 0 "1", correct?
March 11, 2015 at 9:03 am
Restore it to another server. If the restore succeeds, the backup is undamaged.
March 11, 2015 at 8:16 am
If there's an INSTEAD OF trigger on the view, then when the view is the target of an data modification the trigger is fired replacing the data modification. Hence the...
March 11, 2015 at 8:15 am
Viewing 15 posts - 6,436 through 6,450 (of 49,571 total)