Viewing 15 posts - 11,236 through 11,250 (of 13,460 total)
sounds like nested case statements might be what you need, but it's help enourmously if we had some sample data and expected results;
are you trying to identify where there are...
Lowell
April 13, 2009 at 7:47 pm
the trick here is to join a table against a copy of itself...to do that, you need to alias one or both tables;
something like this is pretty close, use this...
Lowell
April 13, 2009 at 7:28 pm
I'm making some minor assumptions, and changed your query accordingly;
if there is an employee id in SGA_Labor, we KNOW he has a name, right? so we can assume that the...
Lowell
April 13, 2009 at 6:29 pm
if you were to post CREATE TABLE... information, as well as the INSERT INTO...scripts, we could help you much better; even with your followup answer, it is still not clear...
Lowell
April 13, 2009 at 2:57 pm
I'm not sure oif the requirement.
Do you want to be able to see all the statuses in Database7, if one gets added in Database5 for example, or do you want...
Lowell
April 13, 2009 at 11:57 am
can't you just do the following:
build a new table on your secondary file group with the same structure,
insert into it,
rename the old
rename the new?
isn't that effectively what...
Lowell
April 13, 2009 at 6:39 am
All I did was confirm your code is essentially the same on my SQL2005/1Gig ram 2.8 machine.
My first guess was because you were using a @table variable for your Tally...
Lowell
April 12, 2009 at 5:40 pm
Extract, transform, load - Wikipedia, the free encyclopedia
basically getting data from one source and bringing it into anohter , realtime would be as it happens or changes.
Lowell
April 10, 2009 at 10:57 am
i think you are after this command, which allows you to see structure of tables(but not hte data), as well as the text of procs and views, right?
GRANT VIEW DEFINITION...
Lowell
April 10, 2009 at 10:42 am
you'll want to simply Add these commands to the top:
SET STATISTICS IO ON
SET STATISTICS TIME ON
--SET SHOWPLAN_TEXT ON
then run your two queries together....actually run them a couple of times...
Lowell
April 10, 2009 at 10:37 am
Kailash Mishra (4/10/2009)
Hi,It's good query, but it not works in SQL 2000
Is there any query, which will give the same outpur and can use in SQL 2000
the query i posted...
Lowell
April 10, 2009 at 7:49 am
ok i'm guessing your query got changed to make it less complex for the web...
but there seems to be a some steps tha seem weird to me.
if you yank out...
Lowell
April 10, 2009 at 4:21 am
there was a similar thread on the issue, and even though the person had updated usage, updated statistics, the issue did not clear until they DROPPED their current statistics, then...
Lowell
April 9, 2009 at 7:17 pm
there was just someone else a day or two ago that got gmail to work; it trick was a weird port for secure connection,
here's the link:
http://www.sqlservercentral.com/Forums/Topic545821-146-1.aspx
Lowell
April 9, 2009 at 7:14 pm
nothing exists automatically for this; you'll have to start a serverside trace, let it run for a while, and use the trace results to do your statistics;
you can get a...
Lowell
April 9, 2009 at 4:34 pm
Viewing 15 posts - 11,236 through 11,250 (of 13,460 total)