Viewing 15 posts - 736 through 750 (of 1,413 total)
As has been said earlier in the thread, usage of the DBs will set the practical limits. Another limit that might affect some is that Enterprise Manager will not...
June 1, 2005 at 4:26 pm
Just keep adding them. As soon as one WHEN-test evaluates to true that tests THEN part will be assigned to the receiving variable or as in this case a column...
June 1, 2005 at 4:18 pm
Shawn, Frank is absolutely correct in saying that all the columns of a row are always stored together, whether or not the table is a heap and has any non-clustered...
June 1, 2005 at 4:01 pm
Can you alias the results so..
select case 1 when in (1, 2) then 'a' else 'b' end AS myAlias ?
Yes, the result is a column in a resultset and works...
June 1, 2005 at 10:40 am
It tells you the average time that any process had to wait for latches. Latches are short-term syncronization objects. Note that it only includes those times when a process actually...
June 1, 2005 at 10:36 am
An interesting thing to note is that this is solved in SQL Server 2005, using a new allocation unit called overflow data. See more in my blog entry http://www.hedgate.net/blog/2005/04/10/support-for-large-rows/
June 1, 2005 at 10:27 am
Yes, you can manage SQL Server 7 instances with Enterprise Manager 8.0.
June 1, 2005 at 10:16 am
I would definitely want to see some proof on that. It seems to me that he was talking about forward-pointers, which are used for heap tables when a row is...
June 1, 2005 at 8:22 am
>You should see this piece of p00 report writing tool that im lumbered with.
Well then you have got some work to do ahead of you. In the same way as...
June 1, 2005 at 8:06 am
Which version of VS2005 do you have? The project type "SQL Server Project" is only available in Professional Edition and above. It's located in the Database project folder under Vsiual...
June 1, 2005 at 7:54 am
Good luck then.
Seriously though, constructing RTF by hand is a nightmare. I would definately suggest implementing a client that pulls the text...
June 1, 2005 at 6:25 am
You should really consider doing this kind of presentation logic in the client. But anyway, you can of course include formatting in the output. But how to do it depends...
June 1, 2005 at 4:33 am
I've been thinking about the features for a perfect discussion forum recently. One of them would be an FAQ that is shown on the Create New Thread page, containing questions...
June 1, 2005 at 3:01 am
I do not think you can create a role for giving rights to DBCC DETACHDB. Since there is no permissions check in sp_detach_db I assume it is a hardcoded check...
June 1, 2005 at 2:59 am
>It worked OK, but the numbering appears totally random.
What you are using is a strange feature of SQL Server, where it increments a variable once per row even though it...
June 1, 2005 at 12:57 am
Viewing 15 posts - 736 through 750 (of 1,413 total)