Viewing 15 posts - 8,761 through 8,775 (of 19,564 total)
Thanks Steve - good basics type of question.
September 11, 2011 at 12:37 pm
GilaMonster (9/11/2011)
September 11, 2011 at 12:34 pm
GilaMonster (9/11/2011)
Grr. Minor car accident friday, hard drive failure yesterday. Can i send this weekend back for a refund please?Minor accident very minor, it's mostly about the shear inconvenience resulting...
Is...
September 11, 2011 at 12:25 pm
GilaMonster (9/9/2011)
Grant Fritchey (9/9/2011)
Besides, I like cats. I just can't eat a whole one by myself.Cats: You can't live with 'em, and there's not enough fur for a rug.
Best cat...
September 11, 2011 at 12:14 pm
Jeff Moden (9/9/2011)
September 10, 2011 at 9:27 am
Jeff Moden (9/9/2011)
SQLRNNR (9/8/2011)
jared-709193 (9/8/2011)
SQLRNNR (9/8/2011)
SET DATEFORMAT DMY
DECLARE @StartDateDATE = '05/06/2011'
,@EndDateDATE = '31/08/2012'
;
WITH getmonths AS (
SELECT cast(Convert(varchar,'01/' + cast(MonthNum as varchar) + '/'...
September 10, 2011 at 9:13 am
srikanthms (9/8/2011)
such as procedure must be already created, UnitMeasure table to be created with production user etc.
Because of this, this has to...
September 9, 2011 at 8:23 am
I think this will be of help.
;
with tablesize as (
select so.Name as TableName
,TableSizeMB = convert(decimal(15,2),si.dpages *8 / 1024)
,IndexSizeMB = convert(decimal(15,2),sum(isnull(si2.used,0))*8 / 1024)
,TotalSizeMB = convert(decimal(15,2),(si.dpages * 8 /1024) + (sum(isnull(si2.used,0))*8 /...
September 8, 2011 at 3:17 pm
jared-709193 (9/8/2011)
SQLRNNR (9/8/2011)
SET DATEFORMAT DMY
DECLARE @StartDateDATE = '05/06/2011'
,@EndDateDATE = '31/08/2012'
;
WITH getmonths AS (
SELECT cast(Convert(varchar,'01/' + cast(MonthNum as varchar) + '/' + cast(yr.yr as...
September 8, 2011 at 12:25 pm
Here's a script that should work for you.
SET DATEFORMAT DMY
DECLARE @StartDateDATE = '05/06/2011'
,@EndDateDATE = '31/08/2012'
;
WITH getmonths AS (
SELECT cast(Convert(varchar,'01/' + cast(MonthNum as varchar) + '/' + cast(yr.yr as varchar)) as...
September 8, 2011 at 12:07 pm
Ninja's_RGR'us (9/8/2011)
SQLRNNR (9/8/2011)
Sad reality 😎
Then they wonder why it doesn't work and why it takes longer than requested and costs more than negociated. Also why we don't want to...
September 8, 2011 at 10:35 am
What happens when you try to run the package outside of the job?
September 8, 2011 at 9:52 am
Jack Corbett (9/8/2011)
I believe I'll be seeing Grant on...
September 8, 2011 at 9:50 am
Viewing 15 posts - 8,761 through 8,775 (of 19,564 total)