Viewing 15 posts - 151 through 165 (of 347 total)
Can you help me with where exactly I need to place the distinct ?
January 13, 2016 at 1:24 pm
The destination database will have several stored procedures and views that should not be wiped off . Hence simply restore cannot be done.
December 15, 2015 at 5:53 am
I temporarily moved the log file to a different drive.
As of now , auto growth/maxsize is set to By 10%,Limited to 2097152 MB. Can we change anything here.
Thanks,
PSB
December 11, 2015 at 8:44 am
I receive
The transaction log for database is full due to 'ACTIVE_TRANSACTION'.
and
Transaction count after EXECUTE indicates a mismatching number of BEGIN and COMMIT statements. Previous count =...
December 10, 2015 at 12:19 pm
Also I get
The transaction log for database 'ITT' is full due to 'ACTIVE_TRANSACTION'.
December 10, 2015 at 11:09 am
For Desired Open Count ,7/17/2015, (1+4+3) = 8 and DesiredOpen for 7/16 = 3 so 8 + 3 = 11 is the cumulative sum for 7/17 . We have different...
December 8, 2015 at 1:01 pm
Thanks All for your response . I basically want the cumulatives to be grouped by Open or Closed Date . Example shown below .
CREATE TABLE #TestTable(
[IndividualDate] [datetime] NULL,
ClosedCount INT,
[ClosedDate] [datetime]...
December 8, 2015 at 11:25 am
Here you go ...
CREATE TABLE #ListString
(
JobNo VARCHAR(10),
InvNo VARCHAR(MAX),
Address1 VARCHAR(100)
)
INSERT INTO #ListString ( JobNo, InvNo ,Address1)
SELECT '3079', 'abc' ,'Add1'
UNION ALL
SELECT...
October 14, 2015 at 9:43 am
I am not getting distinct values .
CREATE TABLE #ListString
(
JobNo VARCHAR(10),
InvNo VARCHAR(MAX),
Address1 VARCHAR(100)
)
INSERT INTO #ListString ( JobNo, InvNo,Address1 )
SELECT '3079', 'abc' ,'Add1'
UNION ALL
SELECT '3079', 'abc'...
October 14, 2015 at 9:28 am
I am already this expression in the 'Use this image' text box and it works correctly in the default run .
=IIF(First(Fields!FirmID.Value, "dsDataset1") = 1, "Logo1", "Logo2") .
The users should be...
August 24, 2015 at 5:34 am
It will be used in a temp table for a report procedure . Not stored in the db.
August 12, 2015 at 7:48 am
Please attach the sample report and thanks so much for helping!
May 14, 2015 at 7:08 am
Thanks for the solution . I want Order2 to utilize (Legend1 + Order1) space and not shift to the left .
Example Legend takes = 3cm and Order1 takes 4...
May 14, 2015 at 5:38 am
Viewing 15 posts - 151 through 165 (of 347 total)