Viewing 15 posts - 1 through 15 (of 170 total)
Thanks for your testing and feedback. Now a days im busy and not able to accomodate the feedback. Sorry for that.
November 5, 2010 at 8:13 pm
Table partitioning feature in there in SQL Server 2008. It will appear as single table only to the application. there is not any impact on application or any database business...
April 29, 2010 at 5:29 am
The order in which records are inserted does not hold any significance unless you specifically track the insert time details.
Also the order in which records are stored does not hold...
April 27, 2010 at 11:39 am
It would have been very good idea if SSMS scripting utility provides option to create procedures with alter statements.
April 27, 2010 at 6:37 am
schema creation is not a very regular activity that need to be created dynamically or using procedures. Its administrative work and usually done whenever required and which is very rare....
April 27, 2010 at 6:35 am
If you want to achieve this with single table then there is possibility of implementing it using trigger.
Usually such kind of constraints are implemented using FK's and normalizing the table...
April 27, 2010 at 6:33 am
one should know the business specifications or logic to implement the functionality of calculating the salary 😎
April 27, 2010 at 6:29 am
Just try with below query if you are getting the records
SELECT PKID, ISNULL(Location,'') AS Location, ISNULL(BoardNumber,'') AS BoardNumber, ISNULL(FK_BoardSize,'') AS FK_BoardSize, ISNULL(FK_BrandId,'') AS FK_BrandId, ISNULL(FK_BrandADId,'') AS FK_BrandADId, ISNULL(FK_ProductId,'') AS FK_ProductId,...
April 27, 2010 at 6:25 am
do not understand how you want to implement unique constraint without using PK/Unique constraint? This is the simplest way than using trigger etc
April 27, 2010 at 5:24 am
You need to prepare dynamic SQL to build the delete query from the parameters you are passing to this procedure and then run the dynamic SQL using exec.
April 27, 2010 at 5:20 am
Please check the queries carefully. This should not happen. I have never seen such issue.
April 27, 2010 at 5:15 am
Replication/log shipping/mirroring is not the right option for data archival.
Recommend you to implement this through SSIS package.
April 27, 2010 at 2:16 am
Viewing 15 posts - 1 through 15 (of 170 total)