Viewing 15 posts - 6,361 through 6,375 (of 14,953 total)
I'm assuming your data source isn't OLE DB or ODBC compliant, or you'd just set up a linked server and be done with it.
Otherwise, you'll have to have the Where...
October 27, 2010 at 10:21 am
John Rowan (10/27/2010)
Am I missing something Gus?
Your solution will work if the hierarchy only has two levels. To be precise, it will work if a child can't have a...
October 27, 2010 at 10:11 am
I think you have misinformation about how a server-side trace works. You can use one to track queries, and keep the files from it for however long you want,...
October 27, 2010 at 10:04 am
WayneS (10/27/2010)
GSquared (10/27/2010)
WayneS (10/26/2010)
Since you seem to know SSIS pretty well, I have a question for you. Is there a way to have a query that generates dynamic columns exported...
October 27, 2010 at 9:58 am
maddogs (10/27/2010)
October 27, 2010 at 9:56 am
You'll pretty much have to crawl the hierarchy three times. Once to find the parent, once to check if any child of that parent has a Y, and once...
October 27, 2010 at 9:53 am
It depends on what you're selecting from, so far as I know.
October 27, 2010 at 9:50 am
WayneS (10/26/2010)
GSquared (10/26/2010)
Jeff Moden (10/24/2010)
October 27, 2010 at 7:01 am
Tom.Thomson (10/26/2010)
Stefan Krzywicki (10/26/2010)
October 27, 2010 at 6:53 am
Create a temp table, Insert...Exec into that, then join to the temp table.
create table #T (Col1 int, Col2 int);
insert into #T (Col1, Col2)
exec ('My script that returns two columns');
select *
from...
October 27, 2010 at 6:36 am
Because you can't guarantee which row will be assigned to a variable if your assignment can return multiple rows, and you need the last one per your posted requirements. ...
October 27, 2010 at 6:34 am
drew.allen (10/26/2010)
October 27, 2010 at 6:31 am
luissantos (10/26/2010)
I create a simple select statment whith a variable, for example:
declare @numcli int
set @numcli = 11
select name,adress from customers where customers.no = @numcli
In ACCESS, when i define a...
October 27, 2010 at 6:21 am
Can you change it back to Outer and add a Where clause to the outer query that gets you what you need? Something like "where LastExit between X and...
October 27, 2010 at 6:17 am
Viewing 15 posts - 6,361 through 6,375 (of 14,953 total)