Viewing 15 posts - 1,426 through 1,440 (of 3,008 total)
If you are deleting most of the rows and you have enough space, it might be faster to insert the rows you are keeping into a new table, and renaming...
April 14, 2010 at 3:27 pm
The first thing you should determine is how long each statement is taking.
If it is the second step (INSERT INTO [ESSBASE_TEST_DW].[dbo].[fct_Logs]) that is taking too long to run, there is...
April 14, 2010 at 2:11 pm
SQL_NuB (4/14/2010)
how would I do a "calendar" table?
Date Table Function F_TABLE_DATE
http://www.sqlteam.com/forums/topic.asp?TOPIC_ID=61519
Function F_TABLE_DATE is a multistatement table-valued function that returns a table containing a variety of attributes of all dates from...
April 14, 2010 at 12:10 pm
The only feature I have seen in SQL 2008 R2 that really looks worthwhile is Standard Edition backup compression.
April 12, 2010 at 2:25 pm
Sounds like a bug in RedGate SQL Compare. Contact them and ask them if there is a fix.
April 12, 2010 at 9:33 am
If your real issue is backup performance, then the best thing you can do will be to use a third party backup product, like SQL LiteSpeed or Redgate Backup. ...
April 9, 2010 at 10:17 am
I used SSIS to implement a real-time currency arbitrage system that drives the vast majority of trades world-wide.
Itβs also a great tool for development of industrial process-control systems for oil...
April 8, 2010 at 2:43 pm
weezie (4/8/2010)
I'm not totally against using dynamic sql.But it can become more difficult to debug and maintain over time.
Also, there can be a performance loss.
It can be simpler to maintain...
April 8, 2010 at 1:06 pm
Why is it important to avoid dynamic SQL?
April 8, 2010 at 12:47 pm
GSquared (4/8/2010)
Michael Valentine Jones (4/7/2010)
What's a "true DBA"?Shouldn't your screen name be "PPilate" if you're going to be asking that kind of question? π
I wash my hands of this thread.
April 8, 2010 at 8:48 am
There is no reason to think that what you described would happen.
It would allow teams to exist in small market with say 1-2 million people in a metro area because...
April 7, 2010 at 1:21 pm
Baseball would be better with a true open market: uncapped salaries, no draft, and uncapped ownership. The reason that the Yankees can generate so much money is because...
April 7, 2010 at 12:25 pm
I like the fact that you can restore a 2008 compressed backup on any edition of SQL Server 2008.
Much nicer than having to install LiteSpeed on a server in order...
April 7, 2010 at 10:26 am
Based on my understanding of your requirements:
declare @t table (
RegionName varchar(10) not null primary key clustered,
[Min] int not null,
[Max] int not null,
[NumberToGenerate] int not null
)
insert into @t
select 'Region 1',...
April 6, 2010 at 3:44 pm
Viewing 15 posts - 1,426 through 1,440 (of 3,008 total)