Viewing 15 posts - 316 through 330 (of 522 total)
Thanks for the question. Since we mostly work with SQL Server 2000 and use dbo only, we have never used the REFERENCES permission so far. This might change in the...
July 23, 2008 at 3:17 pm
As always excellent question with very good explanation.
I am just wondering why you get a different DATALENGTH than I do (I get 486)
Thanks!
July 22, 2008 at 12:00 pm
The bulk-logged recovery model will not help at all btw. There is nothing like a bulk-logged delete.
I would have gone with the new table approach as well, with copying the...
July 20, 2008 at 8:49 am
whatispunk (7/18/2008)
Given the following code:
DECLARE @sql nvarchar(MAX)
DECLARE @where nvarchar(MAX)
SET @where = ' WHERE Name...
July 19, 2008 at 12:38 am
Jeff Moden (7/18/2008)
Again, I wouldn't use a correlated subquery for this. But that's not the big problem here... what does this query do to the @Tab table? Nothing......
July 18, 2008 at 11:00 am
Viswanath S. Dhara (7/18/2008)
Your query works, but that is not what I am tring to do!
I am trying...
July 18, 2008 at 4:31 am
Hello Roi,
you actually can add constraints to table variables.
Example:
DECLARE @MyTabVar TABLE(
PKCol int NOT NULL PRIMARY KEY CLUSTERED
,UniqueCol int NOT NULL UNIQUE
)
July 17, 2008 at 1:49 am
Depending on what you are trying to achieve you can also use LIKE '_%'.
This will exclude NULLs an empty strings '' (but not the single space strings ' ').
July 16, 2008 at 2:50 pm
I think you are looking for this:
SELECT SERVERPROPERTY('ErrorLogFileName')
(If you mean the server logs and not the database logs)
July 16, 2008 at 2:24 pm
umailedit (7/16/2008)
It seems primitive to require locks for any read operation. In Oracle I think readers don't lock/block anything.
Hi umailedit,
can you please elaborate a little more on why you...
July 16, 2008 at 1:30 pm
Hi Danny,
Sorry for the late reply. I had almost no time today to troubleshoot this, but I might be able to check again tomorrow.
Although my confidence to find a solution...
July 16, 2008 at 12:34 pm
Hi Danny,
in one of the post above, you wrote that adding the space in the editor works.
Is the issue solved by this or does it only work in the editor...
July 16, 2008 at 7:52 am
I found this information really helpful:
A not-so-very technical discussion of Multi Version Concurrency Control
July 15, 2008 at 2:58 pm
Viewing 15 posts - 316 through 330 (of 522 total)