Viewing 11 posts - 16 through 26 (of 26 total)
Oops 🙂 Your right... it's way too early in the morning...
June 18, 2010 at 1:50 am
declare @myothertab table (
col2 varchar(20),
col3 varchar(20)
)
insert into @myothertab
select 'A','B' union all
SELECT 'W','Q'
;
declare @myanothertab table (
col2 varchar(20),
col3 varchar(20)
)
insert into @myothertab
select 'A','B' union all
SELECT 'W','Q';
select 1 as col1, col2, col3 into #mytmp
...
June 17, 2010 at 11:50 pm
Doesn't work for me. I have to hold down the ctrl-key + left-click.
March 24, 2010 at 1:23 am
Which capabilities is CAST missing when it "has less capabilities in SQL Server"?
March 8, 2010 at 3:22 am
Don't know what happened there. I recreated the database and everything works now 🙂 (Gremlins?)
February 28, 2010 at 7:56 am
I'm not sure what you mean. The command I got from the profiler is the first one in my first post. As I said, this command is generated by the...
February 28, 2010 at 7:24 am
No, your suggested command has the same result as the auto generated one, an empty table.
This looks like there is something missing to sp_executesql or the target procedure in terms...
February 28, 2010 at 6:16 am
That statement is generated by System.Data.Common.DbCommand, you cannot modify it.
February 28, 2010 at 4:20 am
After rebuilding the index I also get a table scan on querie 1.
September 7, 2009 at 6:17 am
Now that's interesting. I filled "t" with your script. Including my initial data, there are 10288 rows. I ran the four queries and still get the only table scan on...
September 7, 2009 at 5:17 am
Can you explain what you mean with "Also, your statement is only true for the small number of rows..."?
I ran both your example and that from the question. On all...
September 7, 2009 at 3:15 am
Viewing 11 posts - 16 through 26 (of 26 total)