Viewing 15 posts - 20,251 through 20,265 (of 26,490 total)
Table variables are just like temporary tables, just light weight. Both are created in tempdb, table variable just have a few more restrictions. They do not have statistics...
June 26, 2009 at 7:37 am
gururajan (6/9/2009)
I want use Cursors in my query. How to use the cursors in sql2000. i want to some eample with any other link for...
June 26, 2009 at 12:39 am
DBA with OCD (6/25/2009)
- Are you trying to save the 90 percent of the rows you need to get rid of?
...
June 26, 2009 at 12:21 am
Could you explain your problem in a little more detail and perhaps show us what you are looking for with a couple of examples?
Your initial post is a little vaque...
June 26, 2009 at 12:14 am
And then, based on the other thread where it looks like you want the names from TableA with no match in TableB:
SELECT
tA.Id,
tA.Name
FROM
...
June 26, 2009 at 12:11 am
Curious, can you recreate the problem using a simple cte instead of a complex one? Perhaps selecting an ID from a base table?
June 26, 2009 at 12:05 am
This one won't be easily solved. I am going to need some additional information from you, and I'm going to ask you to read the first article I reference...
June 26, 2009 at 12:01 am
Why the requirement for it to be an indexed view? I'm asking as sometimes it just isn't possible based on the data that is being pulled together.
June 25, 2009 at 11:49 pm
We use HyperBac where I work. The differences I see are the following:
1) All our backups are to individual files. Each full, differential, and transaction log is written...
June 25, 2009 at 11:20 pm
Not quite what you may have been looking for, but it does separate the date and time.
declare @TestDate datetime;
set @TestDate = getdate();
select
@TestDate as TestDate, -- Original...
June 25, 2009 at 10:56 pm
sudha.2k7 (6/25/2009)
Could you please tell me if it is possible to use a data conversion transformation from nvarchar to int??
My data needs such a transformation as my manager...
June 25, 2009 at 10:30 pm
Glad it works for you, and thanks for the feedback.
June 25, 2009 at 10:11 pm
john.arnott (6/25/2009)
I want (you) to write...
:w00t:
We are not slaves....
😛
Are we not here to serve?
Keep it up, Lynn, and your halo will tarnish. 😉
Heh, I am Saint...
June 25, 2009 at 9:06 pm
Flo,
I only beat you by a minute. 😉
I only hope he reads the blog, but I doubt it.
June 25, 2009 at 7:52 pm
I find this down right appalling:
rodan (6/25/2009)
1. check to see that the data...
June 25, 2009 at 6:38 pm
Viewing 15 posts - 20,251 through 20,265 (of 26,490 total)