Viewing 15 posts - 556 through 570 (of 927 total)
To understand and Implement FileStream this might be very useful for you.
The Art of SQL Server FILESTREAM by Jacob Sebastian and Sven Aelterman[/url]
June 26, 2014 at 2:03 am
Gangadhara MS (6/25/2014)
It should consider (GOLD1 and GOLD 2) OR SILVER 1 kind of condition for the input data in order to...
June 26, 2014 at 1:26 am
did you check any transaction on this table ?
June 26, 2014 at 1:18 am
i have adjusted the query
Note: i have commented the Order By Clause, because i do not know "[Entry Type]" from which table. To test the query result and performance...
June 25, 2014 at 8:01 am
ChrisM@Work (6/25/2014)
SELECT
ot.OperationalTypeAlternateKey AS [OperationalTypeAlternateKey]
,ot.OperationalType AS [Entry Type]
,Convert(Varchar, DateDayOfMonth)+' '+DateMonthName + ' '+ Convert(Varchar,DateYear) AS [Date]
,COUNT(*) AS [Total]
FROM
If you're returning a single...
June 25, 2014 at 6:34 am
no that not correct the
SwePeso statement explains it better
EVERYTHING that is defined as T-SQL is executed at server side.
Microsoft SQL Serve works with sets and can return data from the...
June 25, 2014 at 1:02 am
very interesting question, yes i have learned something new today. thanks Andy
June 25, 2014 at 12:50 am
i hope i understand it right, i think you are looking for how you want to design you tables to handle such one to many relation with Grades and partner,...
June 25, 2014 at 12:38 am
rama_kavuri (6/25/2014)
as long back i have read...
June 25, 2014 at 12:32 am
you can use the 2nd option, Varchar(MAX) can be used like regular varchar(50). no need to use Mutator "Wite()". keep it simple.
i would suggest that to avoid the null value...
June 25, 2014 at 12:23 am
crazy_new (6/19/2014)
June 19, 2014 at 8:00 am
i used the same query which you originally shared like this
SET @LineNumber = (
SELECT
ISNULL(MAX(B_L_SEQ_NUMBER),0)
FROM
Patricia.dbo.BUDGET_LINE
WHERE
CASE_ID = 121
)
SET @LineNumber = @LineNumber + 1
i have used the same logic, if CASE_ID is not...
June 19, 2014 at 7:01 am
Viewing 15 posts - 556 through 570 (of 927 total)