Viewing 15 posts - 376 through 390 (of 920 total)
Post the view definition.
October 19, 2010 at 2:27 pm
Yes, I'd have to agree with Paul. While the current set of attributes may be identical, they are drawn from different domains and I'd bet that there will be...
October 13, 2010 at 3:18 pm
RAP does not really address the problems of DBAs, whose primary job is to maintain existing applications. RAP is about new application development, where someone has to decide exactly how...
October 13, 2010 at 10:36 am
Yes, once a db is case sensitive, it's ALL case sensitive. I don't see a lot of case sensitve SQL Server installations in the wild.
You should be able to...
October 13, 2010 at 10:02 am
How is this any different from an 'employees' table with a 'gender' column recording 'm' or 'f'?
Do x and y have behavioral or processing differences? All the...
October 13, 2010 at 9:57 am
Unfortunately in the real world these important things constitute only a small fraction of developers’ time, because most developers spend most of their time:
reinventing data modeling (i.e. choosing from among...
October 13, 2010 at 9:38 am
You can get the valid ones for 2008 by:
select * from fn_helpcollations()
October 12, 2010 at 5:03 pm
This should be valid:
SQL_Latin1_General_Cp1_CS_AS
as an alternative, per:
http://msdn.microsoft.com/en-us/library/ms180175(v=SQL.90).aspx
Are you running 2008?
October 12, 2010 at 4:49 pm
The default collation in SQL Server is case insensitive. You need to change the collation of either the columns, the table, the database, or the server to a case...
October 12, 2010 at 3:12 pm
Post the execution plan for the query. Let's see where it's slowing down and that may give a hint as to why the performance varies. Are you running...
October 12, 2010 at 12:10 pm
Some possible paths would be to either broaden his scope and move into an Architect position, or specialize and do consulting in a specific area like data security, performance tuning,...
October 6, 2010 at 5:21 pm
In a typical development the schema design is done by a database guy who is obsessed with micro-optimization of individual tables. He fusses over minimizing table size and deciding things...
October 6, 2010 at 10:31 am
No one is going to travel to a site they don't know to pick up an unexplained error message. Get a screen shot and post it, or post the...
October 5, 2010 at 1:22 pm
It's telling you that the columns in the input are longer than your table columns. You may have to make the columns bigger, or the error may actually indicate...
October 5, 2010 at 1:17 pm
It may not like the "" because someone set QUOTED_IDENTIFIER ON. It's looking for an object name between the double quotes.
September 29, 2010 at 1:48 pm
Viewing 15 posts - 376 through 390 (of 920 total)