Viewing 15 posts - 391 through 405 (of 684 total)
Hi,
I see what you're trying to do. You basically want one extra column that tells you which is the parent directory to any given file/folder, if I'm not mistaken.
There...
September 25, 2006 at 3:00 am
Hi Ramesh,
The answer is, no. You have to create the table first and then populate it like so:
insert
into my_table ([column...
September 11, 2006 at 8:41 am
Hmmm,
I've never had to do this myself. Detaching distribution might not work because it always has a connection to it.
If that is the case you could follow Microsoft's advice on...
August 31, 2006 at 9:10 am
Good point.
You can do this entirely in T-SQL by concatenating the [text] field into a seperate table that has a field with a text datatype (thus allowing more than 8000...
August 31, 2006 at 8:58 am
select
distinct object_name(id) from syscomments where text...
August 30, 2006 at 9:17 am
Hi Jon,
Like the previous poster I'm not sure what it is you want to achieve here.
Firstly, by default, all update/delete/insert statements that users run automically run as transactions. You don't...
August 30, 2006 at 7:44 am
Alternatively,
Just use the interal serverproperty function.
select
serverproperty('ProductVersion')
August 30, 2006 at 7:26 am
Hi,
replication is not a viable solution for redundancy in this case.
Mirroring is an option. It is easier and cheaper to set up than clustering and can offer complete redundancy of...
August 30, 2006 at 7:24 am
Rao,
The query you've written is not falling into an infinite loop at all. It might take a long time but that's all. You're basically trying to calculate the MAX(Deal_Date) for...
August 30, 2006 at 7:02 am
Hi Larry,
That's a good question, which made me think
You're right in saying that when performing an update, behind the scenes SQL Server performs a...
August 23, 2006 at 5:24 am
In that case you've got to make sure that it is in the correct format when you pass it through from .net.
So you have to do this in your .net...
August 23, 2006 at 2:57 am
Hi,
As GilaMonster indicated, forget about how dates are stored in SQL Server (it doesn't really matter). All you have to worry about is how you present it.
Look at the CONVERT...
August 23, 2006 at 2:43 am
Hi Larry,
You mentioned that you have a high level of confidence that no changes will occur to the PK so therefore each update will not require a referential integrity check...
August 22, 2006 at 5:06 am
Hi,
if you use the NOLOCK hint as you were doing so in the original example you shouldn't place any locks on the tables and it shouldn't therefore affect other users.
August 21, 2006 at 9:03 am
Hi,
I'm not so sure that running the statements in a batch is going to help performance. You're still joining onto tab2 (albeit with less rows) but you're going to do...
August 21, 2006 at 8:47 am
Viewing 15 posts - 391 through 405 (of 684 total)