Viewing 15 posts - 6,826 through 6,840 (of 8,760 total)
cbrammer1219 (10/10/2014)
Will this be the same with SSIS 2010?
This is the essentially the same in SSIS 2012 (VS 2010)
😎
October 11, 2014 at 4:47 am
Quick thought, an identity property column cannot be updated, here is a demonstration and a workaround
😎
USE tempdb;
GO
SET NOCOUNT ON;
/* Drop if exists */
IF OBJECT_ID(N'dbo.TBL_IDENTITY') IS NOT NULL DROP TABLE dbo.TBL_IDENTITY;
/*...
October 11, 2014 at 4:29 am
Quick (semi) dynamic sql approach, simple and self explanatory
😎
USE tempdb;
GO
SET NOCOUNT ON;
IF OBJECT_ID(N'dbo.TBL_SAMPLE_DATA') IS NOT NULL DROP TABLE dbo.TBL_SAMPLE_DATA;
CREATE TABLE dbo.TBL_SAMPLE_DATA
(
Doc_ID VARCHAR(20) ...
October 11, 2014 at 2:05 am
GilaMonster (10/10/2014)
TomThomson (10/10/2014)
This isnt true of Windows Firewall with Advanced Security, which does allow specific addresses
Which the OP said he's using (albeit with a incorrect word, he said advanced settings...
October 10, 2014 at 1:42 pm
Koen Verbeeck (10/10/2014)
balasundar.sp (10/10/2014)
Koen, i am not very familiar with windowing functions. If you could give me the select query would be of great help..
You should see this as an...
October 10, 2014 at 2:42 am
Quick notes:
1) First of all this server needs patching, suggest you bring it up to SP3.
2) Read activity will not alter the data in any way, shape or form,...
October 10, 2014 at 2:29 am
Duplicate posting, respond to this thread instead.
😎
October 10, 2014 at 1:56 am
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
Viewing 15 posts - 6,826 through 6,840 (of 8,760 total)