Monday, 18 April 2022

sql issues

 you can change the property.

Tools --> Options --> Designers --> Table and Database designers --> Uncheck --> Prevent saving changes that required table re-creation.

Now you can easily change the column name without recreating the table or losing u r records.



change column type save table changes follow above


https://stackoverflow.com/questions/5136013/how-to-change-column-datatype-in-sql-server-database-without-losing-data


cursor box in visual studo has headache to resolve that we need to

check OVR in below right side bottom in the vsstudio 


to remove this click window + Insert button


git pull not working


use this cmd it will work fine

 git pull origin other-branch

No comments:

Post a Comment

remove duplicates in an sorted array

  using System; public class HelloWorld {          public static void Main(string[] args)     {         int[] ar={2,2,3,3,4,6,6};          C...