Viewing 15 posts - 181 through 195 (of 683 total)
Hi,
You have to place a BEGIN...END statement around the WHILE loop otherwise only the first statement after the WHILE statement will be processed, and you were effectively stuck in an...
April 10, 2008 at 2:59 am
What do you mean via TCP/IP connection?
If you're connected to a SQL Server (doesn't matter how) and you've got sufficient permissions and you're able to issue commands then you can...
April 10, 2008 at 2:54 am
Assuming you're using the ALTER INDEX command, which you should be you'll see ALTER INDEX in the cmd column. I assume that was the column you were interested in....
April 10, 2008 at 2:51 am
Lanny Irwan (4/10/2008)
Dear All,I would need your input on how to check the no of concurrent request on our SQL server.
Cheers,
What do you mean by "request"?
You can use performance...
April 10, 2008 at 2:46 am
ifx (4/10/2008)
April 10, 2008 at 2:39 am
karthikeyan (4/7/2008)
Sorry for not mentioned it in my earlier post.Yes it is working fine in Sqlserver2000.
I can't help but see the funny side of this:D
There we all were scratching our...
April 7, 2008 at 7:06 am
bill.humphrey (4/7/2008)
in a stored procedure i want to check for a null date and assign a default value if it is null:
alter procedure sp_list_orcon_cat_b_v2
@start_date nvarchar(19),
@end_date nvarchar(19),
@priority nvarchar(1),
@response integer
if isnull(end_date) then...
April 7, 2008 at 4:05 am
How much of the database size is actually taken up with data? The database size could be 100 GB but maybe only 50 GB of that is used, in...
April 7, 2008 at 4:04 am
karthikeyan (4/7/2008)
I am getting 1.
That's strange. Can't explain it. What version of SQL are you on? I've tested this on SQL Server 2000 and 2005, with various...
April 7, 2008 at 4:00 am
I might be missing something here but I'm not sure you need those sub-queries there as you're alread joining on the table fo. See if this works:
select CREND...
April 7, 2008 at 3:46 am
karthikeyan (4/7/2008)
select * from Dating
Output:
-------------------------------------------
Date ...
April 7, 2008 at 3:22 am
There's no difference whatsoever between a database that sits on a 32 bit system and a 64 bit system. The only thing that's different is the hardware they sit...
April 4, 2008 at 7:26 am
karthikeyan (4/4/2008)
-------------------------------------------------------------------------------
Declare @strSQL VarChar(255)
declare @count int
select @count = 0
Select @count = @count + 1, @strSQL = (Case When @strSQL Is Null Then Date
...
April 4, 2008 at 5:35 am
Viewing 15 posts - 181 through 195 (of 683 total)