Viewing 15 posts - 5,191 through 5,205 (of 5,590 total)
Jeff Moden (6/17/2009)
Ummmm.... my rule of thumb is to peel one potato at a time on the quirky update...
Hey Jeff, I remember reading a post where you loaded in...
June 20, 2009 at 7:51 am
mazzz (6/20/2009)
I appear to have won a year's licence for Quest's Spotlight for Sql Server, after filling in my details at their booth at the SQLBits conference!
Does anyone...
June 20, 2009 at 7:47 am
dh (6/18/2009)
insert into myTable
select
e_id...
June 18, 2009 at 7:53 pm
VM (6/18/2009)
insert into @table values(1,'SQL Server 2005')
insert into @table values(2,'SQL Server 2005')
insert into @table values(3,'SQL Server 2005')
insert into @table values(4,'SQL Server 2005')
declare @id int
select...
June 18, 2009 at 5:11 am
Well, to check for a table's rowcount being > 0, I would try this:
if exists (select 1 from table)
execute master..xp_cmdshell ...
June 17, 2009 at 8:50 pm
digitalox (6/17/2009)
I have a temp table that shows up daily in the missing indexes report, provided by the performance dashboard report. The problem is that it in the form of...
June 17, 2009 at 8:42 pm
This link might help you find what you're looking for.
June 17, 2009 at 8:13 pm
You're making it harder than necessary.
select * from temp
order by speed desc, acc, tyre, fname, lname
June 17, 2009 at 8:02 pm
No, it's not a bug.
Before you run step 3 again, right-click on the table and select "Refresh".
Then, when you run step 3, you'll have the column.
The GUI tool (SSMS) only...
June 17, 2009 at 7:55 pm
Not directly, but there is an indirect way.
Create a temp table with columns that match the data types of the columns being selected in the procedure.
Then:
insert into #MyTempTable
...
June 17, 2009 at 7:51 pm
vmon (6/17/2009)
June 17, 2009 at 7:46 pm
You're specifying an empty string for the row terminator, but it looks like your file has a normal CRLF. So, just take out the rowterminator clause.
June 17, 2009 at 7:24 pm
rambilla4 (6/17/2009)
I want schedule to run sql server profiler in sql server 2005. But I did not find any option. I want schedule to run the profiler from 8:00AM to...
June 17, 2009 at 7:15 pm
Luke L (6/16/2009)
ps (6/16/2009)
no i'm getting all updated posts if i click on posts added today.except this thread.. also tried to refresh by ctrl+F5.. same results...
Same here, getting updated lists...
June 16, 2009 at 6:37 pm
Jeff Moden (6/15/2009)
WayneS (6/15/2009)
Jeff Moden (6/15/2009)
Ok... you guys can remove the handrails, now. 😛
..... getting out the reciprocating saw .... or will that cause too much damage where the...
June 15, 2009 at 8:22 pm
Viewing 15 posts - 5,191 through 5,205 (of 5,590 total)