Viewing 15 posts - 1 through 15 (of 15 total)
I Set the code in side SP And When I Run my code I see this error:
Msg 16958, Level 16, State 3, Line 257
Could not complete cursor operation because the...
June 18, 2014 at 12:02 am
I Use this sp but execution time is very high--more than 10 min--
CREATE PROC [dbo].[SearchAllTables2]
(
@SearchStr nvarchar(100)
)
AS
BEGIN
SET @SearchStr...
May 10, 2014 at 5:59 am
c# code generates all the words of given length L
March 7, 2014 at 12:12 am
The basic problem is this:
Consider the case that we are looking for a particular term, for example, the word network.
A word can be located anywhere, such as the subject and...
August 5, 2013 at 3:33 am
hi,
one specific writer may write some books or one publisher published many books and etc etc.so we have must have 7 tables.
August 5, 2013 at 2:56 am
Explains:
My Database is for book store.I have 7 tables that stored book info on theirs.
The Stored Procedure SearchAllTable search tables for any string .for example if we want to retrieve...
August 4, 2013 at 6:37 pm
yes
;with cte as
(
select '1' as SomeVal union all
select '11' union all
select 'Some Non Number' union all
select '88'
)
select * from cte
where SomeVal between '1' and '9'
And Result :
1
11
88
but I want...
October 13, 2012 at 12:33 am
in a field of a table ( with nvarchar data type) we have about 10000 data,some of them are integer - from 1 to 1000- and other are string;
I want...
October 12, 2012 at 9:22 am
I Connect using sa
And I have 5 bak files. all of these files are restored before.
Because of a hardware error I change VGA and RAM then install windows...
October 7, 2012 at 1:55 am
i try to restore using this query :
RESTORE DATABASE MyDatabase
FROM DISK = N'C:\MyBackup.bak'
WITH
FILE = ?,
NOUNLOAD,
REPLACE,
STATS = 10
GO
because there are many backups in...
October 15, 2011 at 3:51 am
Hello
My Backup file is from sqlserver 2008 r2 sp1 and I try to restore it on another pc with sqlserver 2008 r2 sp1
When I select backup file I see error...
October 12, 2011 at 4:52 am
thanks for your post 'Adi Cohn-120898' but see this:
DECLARE @Col nvarchar(50)
SET @Col='?'
SELECT @Col
DECLARE @Col2 nvarchar(50)
SET @Col2=N'?'
SELECT @Col2
First Select result is '?' and second result is '?'
September 12, 2011 at 3:35 am
hi dear
(I can not write English well)
I use these procedures in my application.But I want if in the second stored procedure transaction is rolled back , the first transaction will...
February 2, 2011 at 7:36 am
Viewing 15 posts - 1 through 15 (of 15 total)