Viewing 15 posts - 451 through 465 (of 2,894 total)
avdhut.k (5/14/2013)
Hey Sorry,I posting the table correctly,
but while Posting it gets meshed.
I cannot see you have posted a table. Just formatted/indented text.
Have you read forum...
May 14, 2013 at 4:46 am
You stored proc returns SEQNO in the recordset.
Not very well written proc I would say, crap actually.
To get the above value from it, you should execute this proc and...
May 14, 2013 at 3:50 am
avdhut.k (5/14/2013)
I had requirement,I want a report in sql server 2008 as follows,
Total PayDate Amount
2000 ...
May 14, 2013 at 3:45 am
cyberdaemon (5/13/2013)
May 14, 2013 at 2:48 am
avdhut.k (5/14/2013)
I had requirement,I want a report in sql server 2008 as follows,
Total PayDate Amount
2000 20110401 1000
...
May 14, 2013 at 2:31 am
Using FOR XML PATH is most common technique to achieve string/row concatenation.
So, what is your question?
May 14, 2013 at 2:29 am
dwilliscp (5/13/2013)
However I did use the SQL provided... with a few...
May 13, 2013 at 10:56 am
It has nothing to do with SQL.
It's a problem with your application configuration file.
Try to clear down \bin\Debug and \bin\Release folders.
After, build check what config file is copied there...
May 13, 2013 at 9:25 am
michael.higgins (5/13/2013)
SELECT DISTINCT o.name, o.type_desc, p.name, p.type_descFROM sys.sql_dependencies d
INNER JOIN sys.objects o
ON d.object_id = o.object_id
INNER JOIN sys.objects p
ON d.referenced_major_id = p.object_id
Worth a...
May 13, 2013 at 8:45 am
What tool do you develop with? .NET?
If so, check your build configuration. Debug vs Release
May 13, 2013 at 8:39 am
Install RedGate DB search - it's free!
http://www.red-gate.com/products/sql-development/sql-search/
May 13, 2013 at 8:36 am
First of all: it's really hard to work with code which looks like vietnamese noodles.
I've tried to add some indentation there:
ALTER PROCEDURE [dbo].[spreport]
@pSiteSeqId VARCHAR(MAX),
@pStartDate DATETIME2,
@pEndDate DATETIME2
AS
BEGIN
...
May 13, 2013 at 4:35 am
another way of doing it without windowed function:
SELECT pl.ID, usr.FirstName +' ' + usr.Surname as Createdby, pl.ProspectGuid, pl.MobileNumber as CTN, pl.Firstname + ' ' + pl.Surname CustomerName,
Convert(varchar(10),pl.CallBackDate, 103) as...
May 13, 2013 at 4:15 am
Viewing 15 posts - 451 through 465 (of 2,894 total)