Viewing 11 posts - 16 through 26 (of 26 total)
Hi,
I used this in SQL Server 2005. In which, you want to do this?
Best Regards,
Preetha SG
May 26, 2008 at 4:59 am
Hi,
declare @filename nvarchar(10), @num int, @num1 int, @extension nvarchar(15)
set @filename = 'abc.txt1'
set @filename = rtrim(@filename)
set @num = len(@filename) - ((charindex('.',@filename)) + 1)
set @extension = substring(@filename, ((charindex('.',@filename)) + 1), @num )
set...
May 26, 2008 at 4:34 am
Hi,
You can solve this problem with GRANT ALL. For further assistance, check the following link.
May 26, 2008 at 3:14 am
Right Click on login1 ,
Select Properties -> Select User Mapping -> click on the checkbox near to the database name which one you want to assign and remove other database...
May 26, 2008 at 1:36 am
[SqlFunction(DataAccess = DataAccessKind.Read, FillRowMethodName = "FillRow", TableDefinition = "number int, pricedecimal(18,6)")]
public static IEnumerable methodname(int CustomerPID)
{
...
May 26, 2008 at 1:19 am
Hi,
If u r passing argument through the textbox, then change do the following.
if (textBox1.Text == "" || textBox1.Text == null)
{
textBox1 .Text = "03/23/2008";
}
You can use like this,...
May 23, 2008 at 1:18 am
Hi,
In table structure, If the column is NOT NULL, then it will take default Date.
If it is ALLOW NULL, then try the following:
use pubs;
GO
if exists(select name
...
May 23, 2008 at 12:28 am
Hi,
Actually, I tried something based on your explanation.
declare @i int
set @i = 0;
while ( @i < = 290)
begin
if ((@i >= 10 ) and (@i <= 20 ))
begin
insert...
May 22, 2008 at 12:27 am
Thanks Mahesh,
I got the Idea from that Article and I hope will do the things succesfully
Thanks a lot
Bye
May 5, 2008 at 8:46 am
Hi Mahesh,
Thanks for your valuable Response and What i mean to explain is
Summation of ID (1+2+3) < NValue (If NValue=40 , Display first 3 Rows)
and summation of ID (1+2+3+4)...
May 5, 2008 at 6:12 am
Hi Jeff,
Many thanks for your Valuable support and i got the right Idea from your samples and achieved the output as expected.
Thanks a lot,
Regards,
Preetha
May 4, 2008 at 10:02 pm
Viewing 11 posts - 16 through 26 (of 26 total)