Viewing 15 posts - 44,506 through 44,520 (of 49,571 total)
Yes. It will fail with EXECUTE permission denied on < Procedure name >
If you've granted the user the appropriate execute permissions then the insert will succeed. It's the concept...
September 15, 2008 at 12:03 pm
sql guy (9/15/2008)
September 15, 2008 at 11:46 am
From object explorer, expand out security (under the server), right click, choose new login. Make sure windows authentication is selected. Under login name enter the domain and user name -...
September 15, 2008 at 10:23 am
You can monitor the transaction/sec via perfmon (SQL Server: Databases (tempDB)), then you can look a the IO throughput with the sys.dm_io_virtual_file_stats DMV. It's cumulative since SQL last started, so...
September 15, 2008 at 10:12 am
Depends highly on the queries. It could be that your indexes aren't covering and that with the number of rows been returned, SQL decided that a scan of the cluster...
September 15, 2008 at 9:44 am
Richard McSharry (9/15/2008)
There appears to be some disagreement about clustering, but I think the consensus is that it's only a DR solution and not a scale-out solution.
Absolutely, because the separate...
September 15, 2008 at 9:34 am
The explanation for that counter is:
% Processor Time is the percentage of elapsed time that all of process threads used the processor to execution instructions.
So it's (cpu time/elapsed time)*100
How...
September 15, 2008 at 9:15 am
You could also look at moving the clustered indexes onto columns that don't fragment as fast. It needs a lot of thought and analysis, but may help.
September 15, 2008 at 8:52 am
Richard McSharry (9/15/2008)
September 15, 2008 at 8:49 am
Ah. That's reinitialising the backup file, removing (overwriting) any backups that were present in the file before. It's not touching the database's log itself.
Personally I'm not fond of writing multiple...
September 15, 2008 at 4:39 am
Just one.
There would probably be only one for the following three queries
Select columns from tables where id = 3
Select columns from tables where id = 7
Select columns from tables...
September 15, 2008 at 4:17 am
I still don't understand what you mean by initialising the log. It's not a general SQL term for anything associated with the log. LSNs (Log sequence numbers) are used internally...
September 15, 2008 at 4:11 am
SELECT DISTINCT FromLocation, ToLocation FROM ...
will get you all of the unique combinations of the two. Is that what you want, or are you looking for just the values of...
September 15, 2008 at 3:57 am
james.easton (9/15/2008)
September 15, 2008 at 3:32 am
Viewing 15 posts - 44,506 through 44,520 (of 49,571 total)