Viewing 15 posts - 1 through 15 (of 39 total)
Thanks for your reply.
I've searched for a summary.txt file but I cant find it.
A "%programfiles%\Microsoft SQL Server\"... folder isnt even being created.
I've also tried installing SQLEXPR_x64_ENU with the same results.
Is...
April 14, 2015 at 2:18 am
Thank you for your suggestions.
Changing the Contsupp table is not an option.
While the following script doesnt work as I would like.
I am able to update the Contsupp.Notes column.
UPDATE CS
Set...
December 9, 2014 at 7:22 am
djj (12/9/2014)
ntext, text, and image data types will be removed in a future version of...
December 9, 2014 at 6:56 am
Hi Guys,
I've been testing and there must be a problem with the update application.
As mentioned earlier the scripts run fine when run through SQL.
Thanks again for your help.
March 31, 2014 at 1:15 pm
Eirikur Eiriksson (3/31/2014)
One way of simplifying this is to use the NCHAR() function;
EXEC ( ' Select CHARINDEX(NCHAR(41), @Ref) ')
Hi Eirikur,
That looks really promising. 🙂
Let me test.
March 31, 2014 at 8:10 am
Hi GilaMonster,
Thanks for the quick reply.
The reason the quotes are escaped is because they're in an EXEC string.
The script works fine when run on its own.
The problem is...
March 31, 2014 at 8:09 am
Luis Cazares (6/12/2013)
Don. (6/12/2013)
This script seems to do what I want with the demo data.
Select top 100 *
From CONTSUPP
Where RECTYPE = 'C'
AND...
June 13, 2013 at 2:42 am
Thanks for the reply Luis.
This script seems to do what I want with the demo data.
Select top 100 *
From CONTSUPP
Where RECTYPE = 'C'
AND ( CONTSUPREF =...
June 12, 2013 at 5:42 am
Hi Guys,
Any suggestions as to what Im doing wrong?
The script below isnt returning any results:
Select top 100 *
From CONTSUPP
Where RECTYPE = 'C'
AND CONTSUPREF like '%[...
June 12, 2013 at 3:50 am
Luis Cazares (6/11/2013)
Be sure to add them between the brackets[] or to replace them with...
June 11, 2013 at 3:46 pm
Luis Cazares (6/11/2013)
You have the right idea, but you're not completely correct.
This query isn't SARGable, meaning that it won't let you use indexes to obtain the best performance, but it...
June 11, 2013 at 3:21 pm
Learner44 (6/11/2013)
I guess using wildcard character..like
select * from student where studentname like 'LC%' ;
is this the one what you are looking for?
Thanks for the reply
If only it were that...
June 11, 2013 at 3:12 pm
Hi Guys,
Thanks for the replies.
Adding the where clause below returned the correct results.
WHERE Client_Accountno is not null
Select * from Contact1
Where Company <> 'Z_CANDIDATE'
And Accountno not in (Select...
January 31, 2013 at 11:26 am
Koen Verbeeck (11/6/2012)
It looks a lot like a newsletter style report (at least for the notes field).http://blog.hoegaerden.be/2012/11/01/creating-multiple-column-reports/
Hi Koen,
Thanks for the reply.
I took another look at grouping in SQL Reporting...
November 6, 2012 at 6:48 am
Hi Vivek,
I was going to point you to the SQL Reporting stairway series
http://www.sqlservercentral.com/stairway/72382/
Unfortunately I've just noticed its SQL Reporting 2008
November 6, 2012 at 3:49 am
Viewing 15 posts - 1 through 15 (of 39 total)