Viewing 15 posts - 2,461 through 2,475 (of 9,643 total)
Does anyone else have access to this database or server? If so, what are they doing on it?
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
April 13, 2011 at 2:38 pm
By default SQLExpress does not allow remote connections, so you need to go into Server Configuration Manager and Enable remote connections by enabling Named Pipes and/or TCP/IP in the network...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
April 13, 2011 at 2:33 pm
This seems to work with your test data:
--==== SELECT the records
;
WITH cteShipItems
AS (
...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
April 13, 2011 at 2:28 pm
Craig Farrell (4/13/2011)
WayneS (4/13/2011)
CirquedeSQLeil (4/13/2011)
Jack Corbett (4/13/2011)
Craig Farrell (4/13/2011)
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
April 13, 2011 at 2:13 pm
select name, filename from master.dbo.sysdatabases
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
April 13, 2011 at 2:10 pm
The driver for ORacle may not be 64 bit so you may need to run the job on the 64-bit server using 32 bit DTEXEC.exe found in the Program...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
April 13, 2011 at 2:08 pm
The report definitions are xml files so you could write something in powershell or .NET to query the rdl files.
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
April 13, 2011 at 1:55 pm
Change the password and see who screams!:-P Then you can also fix the security holes in those applications. I'm only partly joking.
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
April 13, 2011 at 1:49 pm
This is a question more than an answer, but wouldn't you want, RemoteMonitoringType_FK, to be part of the index used to satisfy this query as it is part of the...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
April 13, 2011 at 1:45 pm
YOu could do the counting in the query.
CREATE TABLE #test (Country CHAR(2), [STATE] CHAR(2), city VARCHAR(50), amount INT)
INSERT INTO #test
(
...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
April 13, 2011 at 1:28 pm
Duplicate post. Please post answers here
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
April 13, 2011 at 1:19 pm
Ricardumus (4/13/2011)
Now if i could only figure out how to close this topic...
There is no way to close topics on SSC. They stay open for eternity and sometimes 5...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
April 13, 2011 at 1:16 pm
Craig Farrell (4/13/2011)
Is it just me or does the constant resizing of the new ad 'Click here to monitor SSC' annoy the hell out of the rest of you, too?
What...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
April 13, 2011 at 1:10 pm
I think something like this might work:
CREATE TABLE [dbo].[tblMeetingTypes](
[MeetingTypeID] [int] IDENTITY(1,1) NOT NULL,
[MeetingType] [varchar(20)]...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
April 13, 2011 at 11:04 am
You should be able to do this:
=Format(sum(Fields!Total_Amount.Value), "#,##0.00")
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
April 13, 2011 at 10:42 am
Viewing 15 posts - 2,461 through 2,475 (of 9,643 total)