Viewing 15 posts - 646 through 660 (of 1,170 total)
This is really a good thing. It could help you find easier the most valuable answer in posts with more answers.
Supporting it.
Regards,
Igor
February 10, 2014 at 2:42 pm
This can be helpful
SELECT st.[text], *
FROM sys.dm_exec_query_stats qs
CROSS APPLY sys.dm_exec_sql_text(qs.plan_handle) st
INNER JOIN sys.dm_exec_cached_plans cp ON qs.plan_handle = cp.plan_handle
Regards,
Igor
February 10, 2014 at 2:37 pm
Lowell (2/10/2014)
Igor Micev (2/10/2014)
Lowell (2/10/2014)
INSERT INTO TableB(a,b,c)
SELECT a,b,c FROM INSERTED
WHERE ConditionA=1
INSERT INTO TableB(a,c,d)
SELECT a,c,d FROM INSERTED
WHERE ConditionB=1
[/code]
Be careful. What if the first INSERT extends the ConditionB set?!
exactly why i said...
February 10, 2014 at 9:23 am
Lowell (2/10/2014)
INSERT INTO TableB(a,b,c)
SELECT a,b,c FROM INSERTED
WHERE ConditionA=1
INSERT INTO TableB(a,c,d)
SELECT a,c,d FROM INSERTED
WHERE ConditionB=1
[/code]
Be careful. What if the first INSERT extends the ConditionB set?!
February 10, 2014 at 7:34 am
sku370870 (2/10/2014)
May I ask what is, no doubt, a stupid question. When you say it is the 'version of the instance' ... what does that mean?
If...
February 10, 2014 at 4:47 am
Nice question. It's by design.
Thanks.
Regards,
Igor
February 9, 2014 at 1:56 pm
Hi Both,
I'd like to share with you the experience I got regarding this question. Maybe I didn't present it well. The idea was to use versioning only for the session...
February 8, 2014 at 2:56 pm
It's the version of the instance.
Here are steps how to change the compatibility level (http://technet.microsoft.com/en-us/library/bb510680(v=sql.105).aspx).
Take a look of the "Differences Between Compatibility Level 80 and Level 90" section.
The practice...
February 8, 2014 at 10:19 am
SQLRNNR (2/4/2014)
Igor Micev (2/4/2014)
Heavy load.
My approach would be like:
You can change your package to use the Foreach loop container, put a data flow task in the loop container and...
February 4, 2014 at 4:47 pm
Hi,
Heavy load.
My approach would be like:
You can change your package to use the Foreach loop container, put a data flow task in the loop container and then in the...
February 4, 2014 at 4:10 pm
I think your approach is not good. Even if you manage to resolve it now, you'll have issues later if going this way.
My suggestion is to re-create your table a...
February 4, 2014 at 1:44 pm
Grant Fritchey (2/4/2014)
February 4, 2014 at 7:58 am
lisa.randles (2/4/2014)
Grant, I'll see what I could do with the brackets, although I'm pretty green...
February 4, 2014 at 7:43 am
helmi (2/4/2014)
February 4, 2014 at 7:28 am
Viewing 15 posts - 646 through 660 (of 1,170 total)