Viewing 15 posts - 1,246 through 1,260 (of 14,953 total)
If refreshing the data is a significant part of the time being consumed by this, I would suggest breaking up the data into the sets actually needed by each set...
July 12, 2012 at 10:54 am
Considering implicit conversion will take place if the column datatype isn't DateTime, no, there isn't a real difference between the two, and they should get the same results.
July 12, 2012 at 10:42 am
ELT() is a MySQL function. Doesn't exist in T-SQL. This is a forum for MS SQL Server, so you will probably be better off on a MySQL site...
July 12, 2012 at 10:39 am
Would it be possible to automate the refreshes so that they happen off-hours?
Replacing them with SSAS+SSRS is definitely the right path to head down. As you mentioned, you'll never...
July 12, 2012 at 8:35 am
Eric M Russell (7/12/2012)
Todd Payne (7/12/2012)
July 12, 2012 at 8:13 am
Select each one separately, then use the Union All operator to stack them.
Something like:
select 1 as Seq, 'PAccess' as AppAccess, Name
from dbo.MyTable
where PAccess = 1
Union All
select 2, 'HAccess', Name
from dbo.MyTable
where...
July 12, 2012 at 7:57 am
Saga... (7/12/2012)
As per this demo names, i have reffered master means main HP561CT and HP561CTstg as staging database.
Just wanted to...
July 12, 2012 at 7:51 am
If you want to abstract hierarchies so they can cover many types of relationships, like these examples, you do it the way you do any many-to-many relationship in a relational...
July 12, 2012 at 7:14 am
Jeff Moden (7/10/2012)
Ok... I've been looking at this thread for a bit for "Sam's view definition" and I'm not finding any "SAM" that posted. Did you mean "Chris' view...
July 12, 2012 at 7:02 am
Jeff Moden (7/10/2012)
GSquared (7/10/2012)
July 12, 2012 at 7:01 am
If you're talking about Change Data Capture (CDC), I believe that's all/nothing on a table.
July 12, 2012 at 6:59 am
Revenant (7/10/2012)
GSquared (7/10/2012)
Steve Jones - SSC Editor (7/10/2012)
jay-h (7/10/2012)
SQLRNNR (7/10/2012)
If you can show that there is data to support a decision, it is more likely to be well received...
July 12, 2012 at 6:39 am
I used to have a manager who insisted that SQL Server itself "leaked memory", because it takes memory from the server, and doesn't give it back, even if it's not...
July 12, 2012 at 6:31 am
I can see a use for this kind of thing in generating data for a dev or QA environment. Makes it so you can parallel patterns and volume of...
July 12, 2012 at 6:21 am
Viewing 15 posts - 1,246 through 1,260 (of 14,953 total)