Viewing 15 posts - 811 through 825 (of 2,894 total)
Joy Smith San (11/30/2012)
I have a report made using SSRS 2008. This report is called from Symantec Altiris console.
(It's nothing but an ASP.dotnet application from Symantec). Requirement is that this...
November 30, 2012 at 4:38 am
karthik M (11/29/2012)
I need the of "Architecture Diagram" SQL 2012 & SQL 2008. I am tired to get the diagram from google. I can see features, merits, demerits, unsupported functionalities...
November 30, 2012 at 4:18 am
I need to identify all the database objects (Stored Procedures, functions,views etc) which are using a specific column called RegulatoryTypes only in the filter (where condition).
In short - It...
November 30, 2012 at 4:12 am
boobalanmca07 (11/29/2012)
what are the concepts should know in sql server 2005
First and the main one: concepts of Relational Databases.
November 30, 2012 at 4:08 am
Shadab Shah (11/30/2012)
November 30, 2012 at 4:01 am
Dave Ballantyne (11/30/2012)
Three seeks here,
Anyway the point is that the optimzer is now able to choose between a seek and scan not the developer 🙂
Cannot see the image you've attached,...
November 30, 2012 at 3:59 am
Jonathan Mallia (11/30/2012)
How can I escape the special characters (<, >, &) in XQUERY and successfully parse the XML ? The unfortunate thing is that I cannot ask the...
November 30, 2012 at 3:57 am
There are few changes you may try, please note my comments:
create PROCEDURE [dbo].[ABC]
(
@user-id as varchar(7),
@LoginType as varchar(5),
@AccType varchar(3),
@AccountActive varchar(1),
@SFAClientType varchar(20),
@TIDM varchar(7),
@SEDOL varchar(7),
@responsibilityCode varchar(7),
@pageNumber int,
@pageSize int,
@sortExpression varchar(32),
@sortOrder varchar(4),
@virtualCount int OUTPUT
)
WITH RECOMPILE
AS
BEGIN
...
November 30, 2012 at 3:35 am
& (and some other) characters in XML needs to be escaped (eg. & for &).
Otherwise, any XML parser will reject it as not well-formed XML...
November 30, 2012 at 3:04 am
Dave Ballantyne (11/29/2012)
dilipd006 (11/29/2012)
Eugene Elutin (11/29/2012)
Try this:
SELECT S.CityId, C.Name
FROM @City AS S
CROSS APPLY (VALUES (CityName),(AlternateCityName1),(AlternateCityName2)) C(Name)
WHERE C.Name LIKE @SearchString + '%'
Thanks Eugene..never known we can use Cross Apply...
November 30, 2012 at 2:55 am
sagar0838 (11/30/2012)
Can anyone please tell me what will be datawarehouse architecture for a banking project ((ex>
facts and dimensions,kind of sources available,security measures to be taken etc
That what people (including myself)...
November 30, 2012 at 2:27 am
The key in my suggestion of Google wasn't really - find everything on internet, but:
expert can spot common problems and find ready-to-use solution in a matter of seconds
That would count...
November 29, 2012 at 1:39 pm
vikingDBA (11/29/2012)
Don't know if this is exactly what you are wanting, but I wrote this to search all tables for occurance of given string. ...
Don't you think it's a bit...
November 29, 2012 at 10:20 am
Viewing 15 posts - 811 through 825 (of 2,894 total)