Viewing 15 posts - 11,236 through 11,250 (of 13,462 total)
Rowan try this method instead; I know a left join is my preference, but I think tat because you are doing 4 operations on the column BIBNAC, and 4 operations...
April 14, 2009 at 5:19 am
is the query using a linked server in SSMS to go to a MySQL Database used by PHP database?
Is PHP Connecting to a SQL2005 database? I know PHP with MySQL...
April 14, 2009 at 5:07 am
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...
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...
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...
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...
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...
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...
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...
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.
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...
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...
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...
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...
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...
April 9, 2009 at 7:17 pm
Viewing 15 posts - 11,236 through 11,250 (of 13,462 total)