Viewing 15 posts - 751 through 765 (of 1,413 total)
>Is there an possibility to make an role that can do DBCC commands en have the Create Database role ?
Well, yes there is, but since the software is using sp_detach_db...
May 31, 2005 at 7:46 am
>Is there a way to output everything to a text format, and maybe run a compare against the two ?
Try using SET SHOWPLAN_TEXT ON.
>How do I update tables/indexes statistics on...
May 31, 2005 at 5:23 am
I guess it depends on how you package your ASP.NET application. A common way to handle this is to have a setup page that the user should navigate to when...
May 31, 2005 at 12:38 am
Unfortunately SQL Server does not support row value constructors and assignment. That means it does not support row comparison operators and therefore cannot do row subqueries, as in your example.
For...
May 30, 2005 at 2:13 pm
That could actually make for a pretty good quiz question, at least if trick questions are accepted.
May 30, 2005 at 1:59 pm
>We were looking for a smoother way, directly affecting the sysconstraints table (field action), yet this seems hard, and undocumented...)
As Frank and Remi says, this is for a good reason....
May 30, 2005 at 8:56 am
I do not know of any specific tool that does that precisely, it sounds more like a general code coverage tool for working through all your code. And that is...
May 30, 2005 at 8:49 am
You should use the MSDN Product Feedback center to add new suggestions. Make sure you describe your suggestion in detail. For instance, what counts as a statement? In this...
May 30, 2005 at 8:45 am
Have you checked that there is not a firewall blocking access to 1433?
May 30, 2005 at 7:21 am
Doh, much better solution of course. Sometimes one should not know too much.
May 27, 2005 at 2:49 am
If there is no space available but the files are set to autogrow then you have no problem. As soon as more space is needed SQL Server will grow the...
May 27, 2005 at 1:27 am
CREATE TABLE #ind (
PageFID INT
, PagePID INT
, IAMFID INT
, IAMPID INT
, ObjectID INT
, IndexID INT
, PageType...
May 27, 2005 at 12:48 am
No problem, glad it helped. Those solutions are often the hardest to find.
May 26, 2005 at 8:31 am
There is no way to use only SQL Server authentication mode. However, you can remove the BUILTIN\Administrators group from the logins if you want to stop system admins from gaining...
May 26, 2005 at 7:27 am
Viewing 15 posts - 751 through 765 (of 1,413 total)