Viewing 15 posts - 12,451 through 12,465 (of 14,953 total)
Jeff Moden (8/4/2008)
CREATE TABLE #MyHead (RowNum INT, Something VARCHAR(20))
INSERT INTO #MyHead (Something)
VALUES ('Test...
August 5, 2008 at 7:55 am
One thing that's recommended by privacy experts and such is to periodically do various "vanity searches" in Google, Yahoo, etc. Plug in your own name, see what comes up....
August 4, 2008 at 3:23 pm
There has to be more surrounding that simple statement. Either that, or the code is never getting run in those cases.
August 4, 2008 at 3:04 pm
The fastest way I know to do this is with a "running totals" solution:
create table #Descriptions (
ID int identity primary key nonclustered,
ProdNo varchar(50),
[Description] varchar(50),
ConcatDescription varchar(max))
create clustered index CID_ProdNo on #Descriptions...
August 4, 2008 at 2:53 pm
Because of the nature of the query, a lot of what it does will depend on the content of the database when it's run. I don't see any way...
August 4, 2008 at 1:48 pm
It is possible. Just use the install disk, and select the tools and deselect the engine when you get to what features to install.
August 4, 2008 at 1:41 pm
ApexSQL also has some.
I use Management Studio for most of my SQL work.
Why would some people not have access to it? You can install it on any number of...
August 4, 2008 at 1:38 pm
Are you using NChar/NVarchar for all of the data that's supposed to be that way?
August 4, 2008 at 1:31 pm
The problem is not with @@Identity (though that does have problems). The problem is that no row is being inserted. That means some other problem with the code...
August 4, 2008 at 1:29 pm
I don't think you can make sa not be an owner for every database on the server.
August 4, 2008 at 1:18 pm
If I had to crawl in a hole every time I spent too much effort on something that turned out to be easy, I don't think I'd ever see daylight....
August 4, 2008 at 12:45 pm
For the SSIS package, you use File, Save Copy of SSIS Package to... in BIDS.
August 4, 2008 at 12:19 pm
bodhilove (8/2/2008)
August 4, 2008 at 12:17 pm
You can do that by adding an e-mail notification step.
On success of step 1, have it to go step 2. On failure of step 1, have it go to...
August 4, 2008 at 12:14 pm
Viewing 15 posts - 12,451 through 12,465 (of 14,953 total)