Viewing 15 posts - 511 through 525 (of 628 total)
I tried to do this a while ago and had no luch finding a way. sysuser does not contain such information and I found no table anywhere that would...
Dan
If only I could snap my figures and have all the correct indexes apear and the buffer clean and.... Start day dream here.
May 18, 2010 at 1:03 pm
I would take a look at the executiuon plan in management studio and see what is happening. I suspect that for some reason Query 2 is doing a table...
Dan
If only I could snap my figures and have all the correct indexes apear and the buffer clean and.... Start day dream here.
May 18, 2010 at 12:54 pm
It depends on your needs.
I assume you are new to SQL but the temp table is not a table at all. it is a variable that only exists in...
Dan
If only I could snap my figures and have all the correct indexes apear and the buffer clean and.... Start day dream here.
May 18, 2010 at 12:49 pm
assuming you are doing this with an SSIS based on where the thread is posted. Then no you can not set it up to pick up header columns when...
Dan
If only I could snap my figures and have all the correct indexes apear and the buffer clean and.... Start day dream here.
May 18, 2010 at 12:45 pm
declare a table variable and input the results into the table. then output the table variable.
Declare @tmptbl table columnname varchar(xx)
Insert into @tmptbl
select columnname from table1
Insert into @tmptbl
select columnname from...
Dan
If only I could snap my figures and have all the correct indexes apear and the buffer clean and.... Start day dream here.
May 18, 2010 at 12:28 pm
I would think just add a step in your trigger to count the id's in T1 if the count is 0 then delete fro t2
Dan
If only I could snap my figures and have all the correct indexes apear and the buffer clean and.... Start day dream here.
May 18, 2010 at 12:23 pm
Using the excel destination you can not control the format. you do not need Excel installed on teh destination however if you do happen to have it installed or...
Dan
If only I could snap my figures and have all the correct indexes apear and the buffer clean and.... Start day dream here.
May 13, 2010 at 12:52 pm
move your Tempdb to the d: drive. there are several articles on-line on how to move you tempdb.
Dan
If only I could snap my figures and have all the correct indexes apear and the buffer clean and.... Start day dream here.
May 13, 2010 at 12:45 pm
based on your sample data what you are looking for is way more complicated then simple grouping. Grouping would only group details that are alike in field 1. ...
Dan
If only I could snap my figures and have all the correct indexes apear and the buffer clean and.... Start day dream here.
May 13, 2010 at 11:58 am
when you say group on a variable can you give an example of what you mean?
Dan
If only I could snap my figures and have all the correct indexes apear and the buffer clean and.... Start day dream here.
May 13, 2010 at 11:45 am
not sure what happened but your results section does not display
Dan
If only I could snap my figures and have all the correct indexes apear and the buffer clean and.... Start day dream here.
May 13, 2010 at 10:46 am
I enjoyed the article and I also have enjoyed some of the comments.
I am fairly new to the SQL community and I have asked for help and responded...
Dan
If only I could snap my figures and have all the correct indexes apear and the buffer clean and.... Start day dream here.
May 13, 2010 at 10:36 am
Here is a script I use that you can get the concept from. It sends out a nicely formated html e-mail.
While I have made quite a few modifications to it...
Dan
If only I could snap my figures and have all the correct indexes apear and the buffer clean and.... Start day dream here.
May 13, 2010 at 10:02 am
just to throw my thought out there. We are currently running several DB boxes on VMWare with great success. VMware offers a few benefits I thought I would...
Dan
If only I could snap my figures and have all the correct indexes apear and the buffer clean and.... Start day dream here.
May 13, 2010 at 9:43 am
If you could post some table structures, sample data, and expected output that would help us
Dan
If only I could snap my figures and have all the correct indexes apear and the buffer clean and.... Start day dream here.
May 13, 2010 at 8:56 am
Viewing 15 posts - 511 through 525 (of 628 total)