Viewing 15 posts - 2,401 through 2,415 (of 6,104 total)
If you use Windows auth, get with your Windows/domain administrators and verify that the trust relationship is in place and in the "right direction." If so, access can be granted...
K. Brian Kelley
@kbriankelley
January 10, 2006 at 8:18 am
Yes, it's possible. If there is a trust relationship such that the new domain trusts your domain, you can do so using Windows authentication. The connection string would be no...
K. Brian Kelley
@kbriankelley
January 10, 2006 at 7:09 am
You can do that, but that command will miss SQL Servers if any of the following is true:
1) a SQL Server is installed on a system but not started
2) a...
K. Brian Kelley
@kbriankelley
January 10, 2006 at 7:02 am
If you need the order by and the top 6... you'll probably want to use a subquery. Something like:
SELECT SUM(smu_reading) Total FROM (SELECT TOP 6 smu_reading ...
K. Brian Kelley
@kbriankelley
January 9, 2006 at 11:08 pm
Do you just need the average or do you need both the average and the six values as well?
K. Brian Kelley
@kbriankelley
January 9, 2006 at 10:41 pm
Most "enterprise" architects are really application architects, meaning they design application systems. Infrastructure architects (like me) design the physical structure, servers, security, etc. Network architects (of which some infrastructure architects...
K. Brian Kelley
@kbriankelley
January 9, 2006 at 10:39 pm
Does the table you're querying have a column named a? Since you have SELECT *, is the a column even necessary?
K. Brian Kelley
@kbriankelley
January 9, 2006 at 2:46 pm
Yes. That's how my workstation is configured and I have had no issues. Both can be open at the same time, too.
K. Brian Kelley
@kbriankelley
January 9, 2006 at 2:33 pm
You must build you string before hand as concatenation characters are not allowed. From Books Online (highlight mine):
Is a Unicode string containing a Transact-SQL statement or batch. stmt must be...
K. Brian Kelley
@kbriankelley
January 9, 2006 at 2:31 pm
You can't. Anyone in the sysadmin fixed server role maps into a database as dbo. The dbo user ignores permissions, including DENYs. The dbo user has access to all objects.
K. Brian Kelley
@kbriankelley
January 9, 2006 at 2:28 pm
Not always. For instance, I believe db_datareader and db_datawriter ignore DENYs for the appropriate operations on tables and views. Not sure about db_ddladmin. You'll definitely want to test to see...
K. Brian Kelley
@kbriankelley
January 9, 2006 at 2:26 pm
I would not apply SP4 (or any SQL Server service pack, for that matter) without testing it first in a non-production environment and making sure it doesn't break anything, however...
K. Brian Kelley
@kbriankelley
January 9, 2006 at 11:29 am
Hrm. I've not seen that. I'll have to play around and see if I can recreate the issue.
K. Brian Kelley
@kbriankelley
January 9, 2006 at 9:47 am
Ok, what you've described fits the scenario described in the following Knowledge Base article:
FIX: You may notice incorrect values for the "Active Transactions" counter when you...
K. Brian Kelley
@kbriankelley
January 9, 2006 at 9:46 am
You can grant the right to CREATE PROCEDURE. This also gives the right to alter. The two are inseparable in SQL Server 7.0/2000. However, the stored procedure must also be...
K. Brian Kelley
@kbriankelley
January 9, 2006 at 9:43 am
Viewing 15 posts - 2,401 through 2,415 (of 6,104 total)