Viewing 15 posts - 6,826 through 6,840 (of 8,753 total)
Quick questions
1) can you post the DDL for the table and all the indexes?
2) what is the result of select @@version
3) what kind of activity is on the table?
😎
October 9, 2014 at 4:07 pm
Quick questions
1) Can you briefly describe the network topology/structure?
2) Which devices are between the attackers and your server (make/model/role)?
3) Are the attacks external? (how can you tell?)
4) What authentication mechanism...
October 9, 2014 at 10:36 am
Quick window function solution, note that it averages entries within the same minute, could be handled differently as Koen mentioned. This solution creates sliding 5 and 10 minutes windows on...
October 9, 2014 at 10:00 am
Quick though, you can play around with the order of values in the UNWANTED_CHARS, add some if missing and so on, should get you pretty close. As a general approach,...
October 9, 2014 at 6:55 am
Here is a quick rCTE based solution, probably not the most efficient but easy for an SQL developer to understand I would presume;-)
😎
USE tempdb;
GO
SET NOCOUNT ON;
GO
;WITH BASE_DATA(LN_ID,LastName,Problem) AS
(SELECT * FROM...
October 9, 2014 at 6:29 am
For fun, maybe do a trace to see what SSMS is doing wrong?
😎
October 8, 2014 at 10:04 pm
First thought would be the SAN, check out the storage network / fibre network, don't think this is a software related error.
😎
October 8, 2014 at 9:35 pm
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
Viewing 15 posts - 6,826 through 6,840 (of 8,753 total)