Viewing 14 posts - 1 through 14 (of 14 total)
Refer to link http://technet.microsoft.com/en-us/library/gg471594.aspx
November 20, 2013 at 4:53 am
The dangerous side of MERGE talks about how MERGE statement with wrong usage can wipe out data: http://www.sqlservercentral.com/articles/MERGE/97867/#.Um5Zwk6LY0Q.twitter
October 28, 2013 at 11:06 pm
This post talks about this: http://stackoverflow.com/questions/14366913/strange-issue-in-ssis-with-with-results-set-returning-wrong-number-of-columns.
HTH,
Venkataraman
October 28, 2013 at 11:01 pm
[font="Verdana"]I have used ERWin data modeler to reverse engineer SQL Server databases earlier. from googling, I understand that they support SQL Server 2012 also. [/font]
October 28, 2013 at 6:57 am
You can disable trigger using "Disable" FROM Context menu of a trigger in SSMS object explorer. But, you cannot script "DISABLE TRIGGER" from SSMS. You will be able to Script...
October 28, 2013 at 6:50 am
In SQL Server 2012, there is a new package deployment model called, Project deployment model, where we can deploy into SQL Server. In SSDT, we can deploy the project to...
December 11, 2012 at 5:17 am
Same Userdefined Function, tried with PATINDEX.
CREATE FUNCTION [CapitalCase]
(
@Input varchar(255)
)
RETURNS varchar(255)
AS ...
October 19, 2010 at 6:15 am
Can you please tell clearly, what do u mean by Schema is different? is just the schema name is different or the schema objects definition is different ?
September 29, 2010 at 11:17 pm
Hi ColdCoffee,
If you want to assign set number, based on the list of values, then every time the list of values can change, as we are not having ORDER BY...
September 29, 2010 at 12:44 am
You can try the below query to get list of tables with partitions. Here, every table will have atleast one partition. So, partition number is 1-based partition number within the...
September 24, 2010 at 4:58 am
Thanks Ashish for the pointer. We can also use SQL Server Client Network utility for doing the same. Both approaches are detailed in the article http://www.mssqltips.com/tip.asp?tip=1620
September 23, 2010 at 12:28 am
Hi Grasshopper,
Please refer to this link http://publib.boulder.ibm.com/infocenter/db2luw/v8/index.jsp?topic=/com.ibm.db2.udb.doc/core/r0002019.htm
You can either query system catalog Syscat.Columns or use DESCRIBE command as given in the link.
Regards,
Venkat
September 22, 2010 at 11:39 pm
Try the below query. It is using a table variable to populate the minute, Hour table and using the same for populating the result set.
DECLARE @MinuteTable Table(minuteofDay SMALLINT, hourofDay...
September 21, 2010 at 12:44 am
Schema is container of database objects aka Securables like Entity,View, Stored procedure etc. It is similar to namespace in programming languages. It can also be correlated with a bank locker,...
September 17, 2010 at 2:59 am
Viewing 14 posts - 1 through 14 (of 14 total)