I use SQL Server 2008 Express with Advanced Services. I have a view: IF EXISTS (select * from sys.views where object_id = object_id(N\'[dbo].[vw_PersonDetails]\'))
I am using the Entity Framework 4.1 within an application. One of the requirmentsis to execute some stored procedures on the database out of which some take q开发者_开发技巧uite some time. Further, th
I\'ve mostly worked with SQL Server so far and now I\'m moving to Oracle for a new project. I\'m trying to create a proc that will return data to a .net app. The only way I got this to work is by usi
I have a table that has a self-referencing foreign key that represents its parent row.To illustrate the problem in its simplest form we\'ll use this table:
I am seeing this first time using \'&\' symbol in sql stored procedures. declare@b bigint set @b=15
Hi whe开发者_如何学编程n I call this procedure in mysql I get an error: call delete_poll(1,0);
which should be the IF condition when the variable assignation results from an empt开发者_开发知识库y resultset?
I have a stored procedure that pulls metadata from the INFORMATATION_SCHEMA views in SQL Server from another database.With EF, I\'m getting the error:
I am working with EF 4.1, I have a stored procedure in my database and I map it to the EF model and I add a function import
I have a javaScript script that is not web related and need to run a stored procedure that contains a raise error statement, and make sure that the procedure was successfully run.