Viewing 15 posts - 1 through 15 (of 45 total)
Hi Jeff
Yes the datatype is represented that way within the DB.
I'm also worried about Policy and BatchMonth. I will talk to the Database Administrator as Policy should be Char while BatchMonth...
November 11, 2019 at 5:51 am
Works fine as well.. thanks..
November 10, 2019 at 7:10 am
Its SQL Server 2016. Thanks, i used your query as the results are consistent.
This has solved my issue.
November 10, 2019 at 7:09 am
Yes each month will have data. I will let know if that works
November 9, 2019 at 7:40 pm
Hi guys
Thank you for the help.
Sometimes when the brain is under pressure, it failes to processes instructions well..But thank you for the solution.
Final query for...
April 20, 2017 at 10:22 am
April 20, 2017 at 9:18 am
Thank you so much this is correct. You saved me hours from excel.
Phil Parkin (8/18/2016)
shani19831 (8/18/2016)
Yes the result is not really the same but i can...
August 18, 2016 at 10:10 am
Thank you for the reply.
Yes the result is not really the same but i can work from excel to change it. something I would love to avoid..
I cant get the...
August 18, 2016 at 9:46 am
Sorry guys, dedication and eager to learn has forced me to write this query is retrieving the information that I want.
select ID,
stuff((SELECT ':' + cast(mobile_number as varchar(10))
...
August 18, 2016 at 9:03 am
CREATE TABLE [dbo].[MTCBEN](
[ID] [varchar](250) NULL,
[MOBILE_NUMBER] [varchar](50) NULL,
[AMOUNT] [varchar](50) NULL,
[CURRENCY] [varchar](50) NULL,
[PROCESSING_DATE] [varchar](50) NULL
) ON [PRIMARY]
INSERT INTO [dbo].[MTCBEN]
([ID]
...
August 18, 2016 at 6:02 am
So, based on this, the reports do "live" in the ReportServer databases? As long as I make sure to backup the encryption key(s,) take a backup of the DBs...
September 3, 2013 at 8:39 am
On the current application server where your reporting services is installed,
do the following
http://www.mssqltips.com/sqlservertip/1453/sql-server-reporting-services-configuration-tool/
start Reporting Services Configuration
1.Click Start, point to All Programs, point to Microsoft SQL Server 2008 R2, and...
September 3, 2013 at 8:08 am
hi there,
Which SSRS are you moving? 2000, 2005, 2008 or 2012?
September 3, 2013 at 7:40 am
Hi Joie Andrew and Ed
I have extensive search but looks like reporting 2000 is not longer supported, i was also not successful in installing it as it kept complaining about...
August 7, 2013 at 4:16 am
Hi Guys,
I have LEFT OUTER JOIN some tables in order to display the rest of the information, but the query takes 14:16 minutes to retrieve 42017 rows, which in my...
August 7, 2013 at 2:47 am
Viewing 15 posts - 1 through 15 (of 45 total)