Viewing 15 posts - 256 through 270 (of 412 total)
Jason, I appreciate the suggestion, but it did not work for me. I moved it over to a windows system account and that still will not allow non-sysadmins to...
July 31, 2008 at 8:53 am
Jeff Moden (7/29/2008)
timothyawiseman (7/29/2008)
July 29, 2008 at 10:46 am
Jeff Moden (7/11/2008)
rameshchandra.a (7/11/2008)
4.What are5.What is CTE(Common Table Expression) in Sql Server.
It helps people who don't know how to write T-SQL. 😛
Heh. They also help people who don't...
July 29, 2008 at 2:27 am
Thank you. This saved me the trouble of writing something like it.
Incidentally, it does not get rid of defaults if you consider those constraints.
July 24, 2008 at 4:08 pm
Chuck Rivel (7/23/2008)
July 24, 2008 at 11:40 am
HYDNIZ (7/24/2008)
July 24, 2008 at 11:39 am
There should be no significant difference that I am aware of when running them as a stored procedure or as individual statements. In certain cases it can affect whether...
July 23, 2008 at 10:23 am
I thought it was a very interesting article with an interesting concept.
One note is that there is a set based way of generating the helper table that may...
July 22, 2008 at 5:46 pm
As Jonathan points out, this needs a lot more detail for a full evaluation and having some execution plans to look at helps substantially.
However, there are many cases...
July 21, 2008 at 10:11 am
Thank you both, I found it immediately by right clicking, and the functionality is definitely greatly improved.
July 17, 2008 at 5:49 pm
Mike Good (7/17/2008)
When we start using "WITHOUT LOGIN" users we're going to have to abandon notion of...
July 17, 2008 at 4:41 pm
select
name, recovery_model_desc
from
sys.databases
Will do it in SQL Server 2005. I do not have a SQL Server 2000 instance handy to test it, but I believe:
select
name, recovery_model_desc
from
dbo.databases
will...
July 17, 2008 at 9:38 am
blandry (7/17/2008)
Is there really any difference or advantage between Temp Tables...
July 17, 2008 at 9:31 am
Well done article. Thank you. I initially anticipated discussing all 4 types of backups at the same time, but what is present is well done.
Incidentally, for any but...
July 15, 2008 at 2:31 pm
Viewing 15 posts - 256 through 270 (of 412 total)