|
|
-
Recently at SQL Server 2012 & SharePoint conference in Germany I have had flurry of questions asking about pattern of topics that I have covered in my book SQL Server 2008 R2 Administration Cookbook. So here it goes about what this book covers:
Chap...
|
-
I believe until SQL Server 2000 (or even SQL 2005) it was easy to remember the release version of your SQL Server instance.
Since the changes affected from SQL Server Release Services and inception of Cumulative Update packages it is hard to keep a trac...
|
-
New platform and new look for SQL Server Knowledge Sharing Network...
|
-
Know everything about SQL Server technologies and latest happenings, not to mention the best practices and sharing best from our own experience....
|
|
|
-
santosh Question Received 1 Years ago through ASK
ALTER proc [dbo].[getTriggerNamesbyId]
@id int,
@returnval nvarchar(500) output
as
begin
set @returnval= (select TriggerPointDescription from ClaimTriggerInfo where TriggerPointID=@id )
return (@returnval)
end
Above is my stored procedure but when ...
|
-
We wish to use these pages for publishing various documents, announcements, FAQ etc related to beyondrelational.com...
|
-
Satya Jayanty (@sqlmaster) Commented 1 Years ago through Ask
Hi Nitin
Somehow this question appeared in my profile just 2 days ago... not sure if you already got a response or not. Otherwise I will be more than happy to explain further....
|
|
|
-
sirknth Question Received 1 Years ago through ASK
table name: test
below are the columns and records
Terminal VIN Loadnum FOH ROH Date
60 A 1 38 48 20120103
60 B 1 38 48 20120103
60 ...
|