Viewing 15 posts - 6,841 through 6,855 (of 8,760 total)
Quick thought, check out this excellent article How to Import Data from HTML pages[/url] by Phil Factor
😎
October 8, 2014 at 9:27 pm
Quick thought, the histograms represents information on data distribution and frequency, the optimizer preserves what it regards as the most useful of those and reduces the number of buckets (steps)...
October 8, 2014 at 9:21 pm
Quick thought, this is an SSMS flaw when changing a table in design view, a workaround would be using DDL statements (ALTER TABLE) instead of the design view.
😎
October 8, 2014 at 8:49 pm
First some quick questions
1) Data sizes?
2) Available high performance storage space?
3) Type of storage available?
Suggest using a staging area on the target Sql Server and replace the Lookup transformation with...
October 8, 2014 at 12:33 pm
balasundar.sp (10/8/2014)
I have the open, close, high & low prices in a table. These are 0 minutes data, Would want to generate 5min, 15 min, 30 min, 60 min, 120min,...
October 8, 2014 at 10:10 am
GilaMonster (10/8/2014)
Oh, and just noticed that I've passed 40k points again. Only ~3000 to go to get to where I was.
Congratulations or maybe rather re-gratulations 😀
😎
October 8, 2014 at 9:59 am
Quick question, in a cmd as an Administrator, do all instances show up when you run a "net start" command?
😎
October 8, 2014 at 3:18 am
er.mayankshukla (10/8/2014)
I have a log database where I have all the stored procedure for logging to log tables.
There are two databases - Dev and Test , which has stored...
October 8, 2014 at 1:04 am
Evil Kraig F (10/7/2014)
ROI is both our enemy and our weapon. Use wisely.
That is so true, just as beauty, ROI is only in the eye of the beholder
😎
October 7, 2014 at 11:18 pm
This is even more straight forward to do using the row_number function and set the order to select Current first if it exists, here is a quick sample
😎
USE tempdb;
GO
SET NOCOUNT...
October 7, 2014 at 10:13 pm
Further on the subject, first an example of a user, title and status tables with mandatory constraints and keys.
😎
USE tempdb;
GO
SET NOCOUNT ON;
GO
IF OBJECT_ID(N'dbo.TBL_USER') IS NOT NULL DROP TABLE...
October 7, 2014 at 1:59 pm
Ed Wagner (10/7/2014)
Sean Lange (10/7/2014)
Koen Verbeeck (10/7/2014)
As if regular spam wasn't annoying enough, one particalar user is now "spamming" the recent posts view with QotD threads...
That has been going on...
October 7, 2014 at 12:32 pm
Elementary:blush:, add the aliases and a from clause
😎
UPDATE ER
SET ER.LeaveDate = DATEADD(wk,2, FC.enrollDate)
FROM Fatals_CTE FC
INNER JOIN DBO.Enroll ER
ON ER.enrollmentID = FC.t_enrollmentID;
October 7, 2014 at 12:24 pm
Quick question, why use cross apply when this can be achieved more efficiently with an inner join?
😎
SELECT
AX.id
,AX.name
,MAX(BX.sal) AS sal
FROM...
October 7, 2014 at 11:18 am
Quick thought, the filter is only applied in the scope of the sub-query, effectively a cross apply without a filter which will return all rows. Consider this query instead
😎
USE tempdb;
GO
SET...
October 7, 2014 at 10:28 am
Viewing 15 posts - 6,841 through 6,855 (of 8,760 total)