Viewing 15 posts - 421 through 435 (of 629 total)
The following script will provide you with a list months.
declare @dtlist table
(dt datetime)
declare @x int
set @x = 0
while @x < 12
begin
insert into @dtlist select dateadd(mm,@x,'01/01/10')
set @x=@x+1
end
select datename(month,dt) from @dtlist
June 16, 2010 at 1:15 pm
The Ford reference reminded me of this old e-mail chain.
If Microsoft Built Cars
Every time they repainted the lines on the road, you'd have to buy a new car.
Occasionally your car...
June 16, 2010 at 12:53 pm
I think that would largely depend on the parameters the report may use. Just to state the obvious if the report sometimes runs for 20 sec and is being...
June 16, 2010 at 12:32 pm
I needed to do something similiar and based on my research you can not access information_schema context in a linked server. every forum I visited ended in the same...
June 16, 2010 at 12:22 pm
Have you already setup the linked Server in the primary server?
That is on Server AA did you go into SSMS and add a linked server under Server objects? If...
June 16, 2010 at 12:05 pm
The following is a Link to article with a pretty good description as to how and why this error can occur. there are also many other various blogs and...
June 16, 2010 at 11:57 am
If you converted these using some auto process it is possible some extra code was added.
Try selecting report properties in the menu. then select report properties. in the...
June 16, 2010 at 10:26 am
If another company is asking for a table layout that it is likely they not only want to know what the fields are in the table but what the table...
June 16, 2010 at 10:17 am
I apologize if there is a question there I am not getting it. Is the result of the reverse egineer wizard not what you expected? If that is the...
June 16, 2010 at 10:03 am
Start a new Database Model Diagram in Visio. Then from the database menu select Reverse Engineer.
A wizard will lauch and you can follow the steps.
June 16, 2010 at 8:36 am
Chris the link to the help page is very useful thank you for the reference.
June 16, 2010 at 8:32 am
Lowell, You clarify for me again why I love the DBA community. Thank you for going above and beyond with your script examples. I think I am...
June 16, 2010 at 8:22 am
what version of Excel do you use? If you use anything less then 2007 then you can not export that many rows. also what version of SQL do...
June 16, 2010 at 8:05 am
I am going to ask a dumb question here but I am just trying to understand it. What are the elements in this that make it find mondays date.
select...
June 16, 2010 at 7:59 am
I apologize from the description I am a little confused on what your are expecting to be returned. Can you clarify with an example what you are expecting to...
June 15, 2010 at 3:07 pm
Viewing 15 posts - 421 through 435 (of 629 total)