Viewing 15 posts - 5,581 through 5,595 (of 8,753 total)
Quick question, why not use sys.sp_updatestats?
π
April 19, 2015 at 1:35 am
super48 (4/18/2015)
I have 2 packages in my project. I am using 2008 r2
I have made changes to one I dont want to deploy both .I want only one packaged...
April 19, 2015 at 1:18 am
Jason-299789 (4/17/2015)
We have Virtual SharePoint DB server with 16GB ram, 1 socket 4 virtual CPU's running at 2ghz.
Yesterday around 6:30am the CPU on this box started going haywire (90%),...
April 19, 2015 at 12:47 am
keshab.basnet (4/18/2015)
April 19, 2015 at 12:36 am
hurricaneDBA (4/18/2015)
I am not referencing 2 sessions, i run a script daily and create/drop a local temporary table daily hence my original question was concerning...
April 19, 2015 at 12:21 am
Quick solution which uses dbo.DelimitedSplit8K[/url]
π
USE tempdb;
GO
SET NOCOUNT ON;
DECLARE @SAMPLE_STR VARCHAR(500) = 'adventure,devotion,for children,happiness,imagination,love,world,lovely,confusion,introspection,on work and working,on writing and words,';
DECLARE @SEARCH_WORD ...
April 18, 2015 at 11:21 pm
nicklarge1973 (4/17/2015)
April 18, 2015 at 4:23 am
Quick solution, similar to the one Ozzmodiar posted, with an additional POC index which eliminates any sorting operations in the execution plan.
π
USE tempdb;
GO
SET NOCOUNT ON;
IF OBJECT_ID(N'dbo.testTable') IS NOT NULL DROP...
April 18, 2015 at 3:28 am
Mark Cowne (4/17/2015)
WITH CTE AS (
SELECT cust_Id,sDate,budget,
ROW_NUMBER() OVER(PARTITION BY cust_id ORDER BY sDate) -
ROW_NUMBER()...
April 18, 2015 at 3:11 am
Further on Alan's reply, this is an incomplete query, first guess would be that it's from a BMC Dashboard, try to capture the whole query.
π
April 18, 2015 at 2:49 am
Abhijit More (4/18/2015)
Would it be possible to handle multiple file systems (e.g. xlsx, csv, mdb) with different /similar headers in single package without Script Component?
Yes it is, I would ask...
April 18, 2015 at 2:28 am
Quick and somewhat naΓ―ve ( compared to Dwain's ) solution
π
Note: added 'a'-->'@' for demonstration purposes π
USE tempdb;
GO
SET NOCOUNT ON;
/* sample data */
IF OBJECT_ID(N'dbo.ReplaceCharStrings') IS NOT NULL DROP TABLE dbo.ReplaceCharStrings;
CREATE TABLE...
April 17, 2015 at 3:21 am
Revenant (4/16/2015)
eccentricDBA (4/16/2015)
Eirikur Eiriksson (4/16/2015)
Ed Wagner (4/16/2015)
Eirikur Eiriksson (4/16/2015)
Ed Wagner (4/16/2015)
djj (4/16/2015)
Ed Wagner (4/16/2015)
CaterpillarTracktor
Construction
Build
Version
Conflict
resolution
New Year
Passed
April 16, 2015 at 2:35 pm
Ed Wagner (4/16/2015)
Eirikur Eiriksson (4/16/2015)
Ed Wagner (4/16/2015)
djj (4/16/2015)
Ed Wagner (4/16/2015)
CaterpillarTracktor
Construction
Build
Version
Conflict
April 16, 2015 at 2:05 pm
Ed Wagner (4/16/2015)
djj (4/16/2015)
Ed Wagner (4/16/2015)
CaterpillarTracktor
Construction
Build
April 16, 2015 at 1:41 pm
Viewing 15 posts - 5,581 through 5,595 (of 8,753 total)