Viewing 15 posts - 46 through 60 (of 143 total)
Thank You David,
i got more detail and better information from below link
Thank u once again...:-):-):-)
March 27, 2014 at 7:48 am
Hi Thank you for your response,the error was gone but the the output "name" is coming from "set @sql='declare '+@var +' nvarchar(max) set '+@var+' = ''name'' print '+@var " not...
February 13, 2014 at 9:35 am
Hi,
After changing to nvarchar also same error...
Procedure expects parameter '@parameters' of type 'ntext/nchar/nvarchar'.
???
February 13, 2014 at 8:07 am
We tried using sp_executesql also, getting below error
Procedure expects parameter '@parameters' of type 'ntext/nchar/nvarchar'.
declare @var nvarchar(max) = '@var1',
@sql nvarchar(max)
declare @var1 nvarchar(max)
DECLARE @dbstatus varchar(500)
print @var
--set @sql='declare @var1 varchar(max) ...
February 13, 2014 at 5:51 am
Hi,
We tried this also, but variable "var1" is not retaining the value "name", print @var1 is returning NULL.
declare @var varchar(max) = '@var1',
@sql varchar(max)
declare @var1 varchar(max)
print @var
set @sql='declare '+@var+' varchar(max);set '+@var+'...
February 13, 2014 at 4:52 am
Physical size of my actual backup is showing :500 MB
Physical size of my snapshot is showing : 4 GB.
Is a snapshot will take that much size?
Please clarify...
January 30, 2014 at 3:42 am
Creating snapshot using below code...
create database Unify_snapshot on (
name = Unify_data,
filename = 'd:\Unify_Data\sn\Unify_snapshot.ss')
as snapshot of Unify;
and the fule "Unify_snapshot.ss" size is showing 4GB.
January 29, 2014 at 8:55 am
This is the first time i've created snapshot, i want to know that is snapshot size is more than the Database?
here my snapshot size is almost 8 times the database.
Please...
January 29, 2014 at 7:14 am
Hi Team,
I've created a snapshot for reporting purpose, is there any possible way to keep the snapshot upto date with the database,
Please suggest...
January 29, 2014 at 3:32 am
I agree with you, tuning the queries and indexes will help.
but please give one clarity...
is there any possibility that db_datareader can block queries...
January 21, 2014 at 1:17 am
Thank you for your response.
my query is perfectly tuned, but am a db_datareader user, my query is blocking another queries.
am not using NO Lock.
is there any best way to avoid...
January 21, 2014 at 12:56 am
Hi,
Thank you for Speedy response.
my question is, when i print the values from trigger
print @id
print @name
Print '--'
am getting
1
D
--
but as per my table id's 1 and 2 are updting, i...
December 17, 2013 at 5:43 am
Hi,
Gettting below error
The conversion of a varchar data type to a datetime data type resulted in an out-of-range value.
is there any method to convert '-' to datetime,
in my scenario, if...
November 29, 2013 at 5:16 am
Hi,
Am having a non-cluster index on two columns, but the performance of that tables from my application is too slow, if i change the non-cluster index to cluster index, is...
August 16, 2013 at 4:29 am
Hi,
Definetely i'll get benefited if the data is sorted according to ID and empNo,
but my existing table contains primary key non cluster index, if i changed the same to primary...
August 16, 2013 at 2:44 am
Viewing 15 posts - 46 through 60 (of 143 total)