Viewing 15 posts - 6,271 through 6,285 (of 14,953 total)
Roger L Reid (11/3/2010)
November 3, 2010 at 2:49 pm
True. I made some assumptions about use that may not be valid.
November 3, 2010 at 2:24 pm
WayneS (11/3/2010)
Well Kit, Gus just said everything I was going to... and since we both know he's always right... :w00t:;-)
You're the third person to accuse me of that.
The first was...
November 3, 2010 at 2:23 pm
You can do a couple of different things to accomplish this.
The best would be to make a table that has your values in it, and join to that table in...
November 3, 2010 at 1:52 pm
RPSql (11/3/2010)
An error occurred while executing batch. Error message is: Exception of type 'System.OutOfMemoryException'...
November 3, 2010 at 1:50 pm
naresh0407 93367 (11/3/2010)
can u give me example on how to do that.
select case when MyColumn = 'Header' then 1 when MyColumn = 'Other' then 2 else 3 end as Seq,...
November 3, 2010 at 1:49 pm
SeanLange (11/3/2010)
On another point, this looks like...
November 3, 2010 at 1:47 pm
Kit G (11/3/2010)
So, I do a full backup at 1:00pm on a Sunday. Each night, at 11:00pm, I have the Diffential backup scheduled to run.
If the database won't change...
November 3, 2010 at 12:36 pm
Here's as far as I got in the time I've had so far.
Try this out, see if it helps with the first query's performance. I'll see if I can...
November 3, 2010 at 12:27 pm
Put simply, those are placeholders. The "Script As" button has no clue what actual values you want, so it just puts something there that can help you fill in...
November 3, 2010 at 11:36 am
I'd have to see the rest of the query to be able to help much.
As an aside, take a look at uses of a Numbers or Tally table to split...
November 3, 2010 at 11:33 am
Create a sub-table for students, include a column for "Project Suffix" which will include the "a", "b", "c". For ones that don't need that, put a zero-length string or...
November 3, 2010 at 11:26 am
They're called "Input Parameters". You could have one like this:
create procedure dbo.IDsByDOB
(@DateOfBirth_in datetime)
as
select ID, DateOfBirth
from dbo.MyTable
where DateOfBirth = @DateOfBirth_in;
Then, of course, the application has to be built to run...
November 3, 2010 at 11:23 am
Viewing 15 posts - 6,271 through 6,285 (of 14,953 total)