Viewing 15 posts - 1,126 through 1,140 (of 1,226 total)
Many joins would indicate to me proper 3rd form normalisation. You may want to transform the data using dimensional architecture to avoid these. But with proper indexing, many joins are...
February 8, 2013 at 3:34 pm
Something may have changed on the network in that you may be required to use the full qualified domain name.
Example like// from : myWarehouseServer to: mywarehouseServer.domain.company.com/instance.
It doesn't hurt to...
February 8, 2013 at 3:24 pm
Profiler will help you. Look at the Objects and Performance event classes.
February 8, 2013 at 3:19 pm
Hi, The way I read it you are looking for not only duplicates but the original row the duplicates duplicated?
If so try this ( I adjusted your code a tad):
create...
February 7, 2013 at 4:29 pm
I've had to correct views I've inherited that used select * and returned many unneeded columns. A quick and dirty way to correct them is to right click a view,...
February 7, 2013 at 3:55 pm
The micro-managers I've had are not technical people and have MBA's. They are looking for a way to justify their degrees and think the walls will fall down without them....
February 4, 2013 at 5:55 pm
It may not be a bad idea to have the server and other workstations check apply updates automatically to Windows and applications.
November 28, 2012 at 10:16 am
Log shipping is mainly used to have a backup server in case of hardware failure on the production server. This should already be in place on production system. If your...
November 16, 2012 at 2:10 pm
I dont know this to be common place. In fact I know not to expect it. With that being said it may be possible (just to prevent this scenario...
November 16, 2012 at 1:59 pm
If I understood correctly >
create table #t1 (productNo tinyint, productname varchar(10),
Des varchar(50), quantity tinyint)
Insert into #t1
select 1, 'borin', '4x-mal', 2 union all
select 1, 'borin', '5x-cal', 3 union all
select 2, 'hypoid',...
November 16, 2012 at 1:46 pm
Very strange indeed.
Try..
dbcc opentran
To see if you have any open transactions that you may not even be aware of.
November 16, 2012 at 1:33 pm
A more basic approach, in case you are not familiar with the CTE function ... would look something like
select market_project, max(dashboard_status_level) max_level
into #mytempTable
from mainTable
group by market_project
/* this creates a temporary...
November 16, 2012 at 1:20 pm
Thanks for the reply Craig. I'll play around with that and report back.
November 13, 2012 at 10:45 am
Hi and thank you for the reply. Yes they all have the same schema.
November 12, 2012 at 2:03 pm
Ok thanks for the note, I missed that. I guess haste does make waste.
November 9, 2012 at 10:41 am
Viewing 15 posts - 1,126 through 1,140 (of 1,226 total)