Viewing 15 posts - 181 through 195 (of 470 total)
Roy Ernest (12/2/2011)
What I meant was putting SQL Server in a Work group is the best way to do it.
With the DMZ comment I assumed there was something I was...
December 2, 2011 at 10:03 am
Dev (12/2/2011)
I will keep a note in my collection. One more reason for not opting SQL Server Clustering... ๐
There are some very good reasons to use a cluster....
December 2, 2011 at 9:32 am
Dev (12/2/2011)
December 2, 2011 at 9:21 am
Unless reindex hasn't been doing it's job I'm not worried about internal fragmentation. I'll update this post with how it goes (or if we decide to do a straight...
December 2, 2011 at 8:53 am
There isn't much on the drive outside of DB files so we should be good with that but it is something to look out for since the files we're putting...
December 2, 2011 at 8:44 am
If the SQL Server is on the domain then it's easier to use Windows authentication to connect to the server. Windows authentication is more secure than SQL authentication if...
December 2, 2011 at 8:21 am
OzYbOi d(-_-)b (11/23/2011)
November 23, 2011 at 9:13 am
BOL states that this happens for numeric and decimal so I'm betting it has something to do with the fact that those are the two data types that can take...
November 23, 2011 at 8:31 am
We send transaction log backups directly to a network location to get them off the server. With the exception of one server that works well. For full and...
November 15, 2011 at 12:00 pm
To clarify what the following statement from BOL means:
Column names or aliases in ORDER BY clauses must reference column names returned by the left-side query.
That means if you try ordering...
November 8, 2011 at 9:41 am
SQL Kiwi (11/8/2011)
http://connect.microsoft.com/SQLServer/feedback/details/630087/intersect-with-order-by-abends-when-data-types-are-implicitly-converted-on-right-hand-side
Thanks. I was wondering what the bug was and couldn't track it down. Implicit conversion makes sense.
November 8, 2011 at 9:33 am
bopeavy (11/8/2011)
I agree maybe I won't rely my answer so much on Microsoft Information next time.
You're not the first to have this happen. Both due to ambiguity and...
November 8, 2011 at 8:07 am
Ninja's_RGR'us (11/8/2011)
cfradenburg (11/8/2011)
use master
select fileid [file_id], name from sysfiles intersect
select file_id,...
November 8, 2011 at 8:02 am
For those with a SQL 2005 box you can test on, does the following result in the same error:
use master
select fileid [file_id], name from sysfiles intersect
select file_id, name ...
November 8, 2011 at 7:44 am
Rich Weissler (11/1/2011)
Only row 2 matches the explicit Latin1_General_CI_AS collation in the query.
I see one row. Which is the other one?
That's row number 2, not two rows.
November 1, 2011 at 6:45 am
Viewing 15 posts - 181 through 195 (of 470 total)