Viewing 15 posts - 736 through 750 (of 5,103 total)
That's much better (consistent) and does not requires of any tricks!
January 7, 2009 at 1:19 pm
That "feature" can only be controlled with SET ANSI_WARNINGS OFF which is a connection property. You could try BULK INSERT instead and run it with that SET option "off". I...
January 7, 2009 at 1:15 pm
make them part of SQLAgentReaderRole
January 7, 2009 at 1:08 pm
rruest (1/7/2009)
SELECT somedata FROM Table1
UNION ALL
SELECT somedata FROM Table2
The query works perfectly. The user requires me to limit the...
January 7, 2009 at 12:42 pm
compression works at the "table" level why would you care to move it out of the database?
January 7, 2009 at 7:52 am
Don't forget to post back with the results ... 😉
January 6, 2009 at 4:29 pm
Although the article is well written but I have a word of advice. For very large tables row_number() over().. has been inefficient for me when it comes to pagination!
January 6, 2009 at 2:57 pm
GSquared (1/6/2009)
January 6, 2009 at 2:37 pm
By the way if the columns are "nullable" you need three way comparison like:
(
i.col1 <> d.col1
or (i.col1 is null and d.col1 is not null)
or (i.col1 is not null and d.col1...
January 6, 2009 at 2:13 pm
Grant Fritchey (1/6/2009)
Oopsie. Thanks Noel!
I have witnessed the quality of your answers. I know it was just a glitch 😀
January 6, 2009 at 2:09 pm
dave (1/6/2009)
Noel - It worked! I had to remove application_id from the partition, but that did the trick.Thanks everyone for the help!
I am glad you got it!
January 6, 2009 at 2:06 pm
In addition your trigger should only perform the update IF the columns on the "deleted" and "inserted" tables have different values. That way you will be minimizing the impact of...
January 6, 2009 at 1:06 pm
How about ?
;WITH cte
AS
(
SELECT a.application_id,
d.brandname,
dd.dosage,
t.renew,
...
January 6, 2009 at 12:57 pm
I think that Grant forgot one link
UPDATE TABLE
SET str_val = x.str_val
FROM TABLE x
WHERE x.prop_id = 131
and TABLE.prop_id = 130
and TABLE.tocid = x.tocid
January 6, 2009 at 12:51 pm
Viewing 15 posts - 736 through 750 (of 5,103 total)