Viewing 15 posts - 2,836 through 2,850 (of 5,394 total)
You could query INFORMATION_SCHEMA.COLUMNS for the column level collation info.
However, I don't think that the collation thing is the cause of your security issue.
Have you tried deleting the database...
August 26, 2011 at 2:10 am
the article seems to deal with changing the collation of the system databases. i don't want to change the server, only the database. does my method above seem correct?
You're...
August 26, 2011 at 1:19 am
I don't know about a Windows Jobs tracking software.
For SQL Server there's SQLJobVis that seems to be what you're looking for.
Hope this helps
Gianluca
August 25, 2011 at 9:11 am
I don't think that the user access issue is related to the collation conflict.
The collation conflict error you get in SSMS is due to the queries issued by SSMS...
August 25, 2011 at 2:29 am
I don't understand your question, sorry.
What do you mean with "grid"?
Can you please clarify, possibly with an example?
Thank you
Gianluca
August 24, 2011 at 8:15 am
You mean that if you add data it fails because of "Could not allocate a new page for database" error?
August 24, 2011 at 6:46 am
I hope this is not your real SA password...
It would not be a wise move posting it on a public forum.
Some advice:
1) Don't use sa.
2) Use Windows Authentication (should be...
August 23, 2011 at 4:35 am
Could also be a different schema. Try qualifying the object with the schema name.
August 23, 2011 at 4:29 am
You have the same column name multiple times:
<snip>
null as perc_cs_privado, null as perc_cs_privado,
<snip>
Change one of the column aliases to a different name.
August 23, 2011 at 4:05 am
That should not be hard to do.
Can you post:
1) Table scripts
2) Sample data
3) Expected results based on the sample data?
If in doubt, see the first article linked in my signature...
August 23, 2011 at 2:53 am
Can you attach the actual execution plans for both statements?
August 23, 2011 at 2:13 am
What do you mean with "alias"?
The DNS network name?
August 23, 2011 at 1:54 am
With RESTORE DATABASE. 🙂
You can fire that from the GUI in SSMS if you're not familiar with the T-SQL syntax.
On the object explorer right click the "Databases" node and select...
August 23, 2011 at 1:53 am
It highly depends on the view definition vs T-SQL code you're running.
Can you post the actual code and actual execution plans?
However, a couple of pointers should apply anyway:
* Are you...
August 23, 2011 at 1:49 am
Nice method. Thanks for the good article.
And thanks to Paul Randal for the sage advice.
August 23, 2011 at 1:05 am
Viewing 15 posts - 2,836 through 2,850 (of 5,394 total)