Viewing 15 posts - 9,856 through 9,870 (of 15,381 total)
DataAnalyst011 (12/12/2012)
I didn't do a very good job setting this up. I just tried to create a quick example to ask about a concept -...
December 12, 2012 at 12:33 pm
like '%create%dbo%'
Not really sure what you are looking for. Also if you only the dbo schema why does it matter much if the object is not fully qualified?
December 12, 2012 at 11:58 am
Taragor (12/12/2012)
I agree. I was commenting on Sean's suggestion of using a convert function instead of an insert into a new table.
Tar
I merely suggested changing the existing table and then...
December 12, 2012 at 10:58 am
What does that mean? The number of explicit transactions? The number of implicit transactions? Both? What exactly are you trying to find?
December 12, 2012 at 9:50 am
Like this.
SELECT COUNT(ID), Prog
FROM tblCount
GROUP BY Prog
December 12, 2012 at 9:46 am
Once you add another join you are quite likely going to get a different number of rows. That is why your counts changed.
December 12, 2012 at 9:37 am
Your description is extremely vague to say the least. Do you an insert trigger on Table1 that inserts data into Table2? And you also have an insert trigger on Table2...
December 12, 2012 at 9:17 am
Not sure why you want to create a new table and copy all this data into it, especially if you the point of this is to save space. Alter the...
December 12, 2012 at 8:06 am
Hi I see that you are pretty new around here. From what you posted there is no chance anybody can offer much help. Take a look at the first link...
December 12, 2012 at 7:33 am
It is rather difficult to offer a very solid solution because there are so few details posted. From your description though I don't know how you would be able to...
December 12, 2012 at 7:25 am
It is pretty much impossible to provide any assistance from just a query and a screenshot of an execution plan. Take a look at this article from Gail. It explains...
December 11, 2012 at 2:57 pm
computer.mike (12/4/2012)
December 4, 2012 at 3:23 pm
Melanie Peterson (12/4/2012)
December 4, 2012 at 3:15 pm
I can see a lot of things wrong with that query.
Let's start here.
CASE
WHEN STG.cde_pol_stat_gaaa = 'A'
THEN (
SELECT MaxDate
FROM stg_GENESIS_gaaa_t a
Can the subquery return more than 1 row? It...
December 4, 2012 at 2:11 pm
nikki123 (12/4/2012)
5 nth select columa column b
10 5.16 ...
December 4, 2012 at 1:09 pm
Viewing 15 posts - 9,856 through 9,870 (of 15,381 total)