Viewing 15 posts - 1 through 15 (of 29 total)
are you asking about the .net development side of it?
if yes, you can take a look at this one:
http://www.codeproject.com/Articles/675933/Returning-Multiple-Result-Sets-from-an-Entity-Fram
this is using a stored proc in an EF model.
December 10, 2013 at 1:20 pm
Yes, That's right
In cases like this, when I concat column data together I always use a special character as a separator to make sure that kind of conflict won't happen.
December 10, 2013 at 10:46 am
No, you cannot use it like that
you are going to have to use Dynamic SQL and exec command to accomplish this type of commands
December 9, 2013 at 3:33 pm
gary.morey (12/9/2013)
I need to be able to retrieve the rows from table A where the...
December 9, 2013 at 3:17 pm
I think for the NULL values you can set the default value for the column to 0 in the column definition, so when the data is not provided, it will...
December 9, 2013 at 12:57 pm
bkshn (12/3/2013)
I define a temp table to fill with execution of stored procedure, but I have an error that
Invalid object name '##UserMidListTable'
is my syntax in temp table wrong?
...
December 3, 2013 at 11:21 am
why don't you try the SQL Server Partitioning instead of trying to manually implement such a thing?
If I am understanding correctly, you only are doing this because the table is...
December 2, 2013 at 6:54 pm
newbieuser (12/2/2013)
I'm trying to import customer's SQL 2005 database(database.bak) onto our SQL Server 2012 server. I right clicked on database in the Management studio 2012 , restore...
December 2, 2013 at 6:45 pm
dndaughtery (11/26/2013)
Select count(*) from tblevent a inner join...
December 2, 2013 at 5:02 pm
I assume By "Locked" you mean Encrypted? are you seeing this little Lock icon over your stored procedures names?
If that is the case, I dont think you can Decrypt them...
November 29, 2013 at 1:09 pm
imrsam2002 (7/14/2012)
July 16, 2012 at 4:53 am
maybe you need to install a new instance of sql server,
the default probably has beenused for your 2005 version
while istalling the wizard will show you the installed instances and will...
July 16, 2012 at 4:49 am
hey i think i found my solution:
CREATE VIEW UV_ProductsPrices
AS
WITH PriceCompare AS (
SELECT i.productid ,ph.actiondate,ph.feebuy,ph.feesale,ph.feeenduser,ROW_NUMBER() OVER (Partition BY ph.ProductId ORDER BY...
April 8, 2009 at 4:12 am
hi
i thing the solution in sql2000 is that you may need to use a temp table and try somthing like this for generating a row_number
SELECT IDENTITY(int, 1,1) AS ID_Num
INTO NewTable
FROM...
March 11, 2009 at 6:03 am
hi
i think gsquare's solution is verywell,
works fine
March 11, 2009 at 5:54 am
Viewing 15 posts - 1 through 15 (of 29 total)