Viewing 15 posts - 361 through 375 (of 1,162 total)
It's not to do with permissions. In modern versions of Windows, you can't interact with the UI associated with the SQL Server Service Process - remember that XP_CMDSHELL is running...
May 21, 2012 at 6:37 am
Nope, you can use it as you wish, commercially or otherwise. Maybe the installer failed and rolled back? If you're installing it via the normal installer, there should be a...
May 21, 2012 at 6:04 am
raotor (5/21/2012)
HowardW (5/21/2012)
You should disable Auto Shrink entirely on all databases, it's terrible for performance as it causes loads of fragmentation.
None of my DB's use auto-shrink, so there's no...
May 21, 2012 at 5:51 am
You should disable Auto Shrink entirely on all databases, it's terrible for performance as it causes loads of fragmentation.
When running the command manually, there's a parameter you can specify...
May 21, 2012 at 5:04 am
GSquared (5/18/2012)
mtassin (5/18/2012)
Gazareth (5/18/2012)
dwain.c (5/18/2012)
May 18, 2012 at 9:01 am
AlAndrew (5/18/2012)
michael vessey (5/18/2012)
UPDATE a
SET a.Age = b.age
from table_1 a left outer join (
SELECT userid,age from table_2 x where recdate=(select MAX(recdate) from table_2 where userid=x.userid...
May 18, 2012 at 7:45 am
You haven't provided sample data, but something like this should do the job:
;WITH Latest_Age AS (
SELECT UserID, Age, ROW_NUMBER() OVER (PARTITION BY UserID, ORDER BY RecDate DESC) rn
FROM Table_2
WHERE Age...
May 18, 2012 at 6:56 am
dwain.c (5/18/2012)
The only difference was that I wasn't doing an INSERT.
I'll have to give it another go sometime because...
May 18, 2012 at 3:26 am
dwain.c (5/17/2012)
GSquared (5/17/2012)
May 18, 2012 at 3:12 am
Hi Barry,
That's interesting. Here though, its not just the ordering that's incorrect, the entire accumulated resultset gets discarded, so it just doesn't work.
This does crop up every now and...
May 18, 2012 at 2:01 am
Happy to agree to disagree. I don't think the article refers to accumulating functions being used in that way. The syntax exists as an alternative to SET, so you can...
May 17, 2012 at 10:58 am
Matt Miller (#4) (5/17/2012)
HowardW (5/17/2012)
May 17, 2012 at 10:45 am
Matt Miller (#4) (5/17/2012)
May 17, 2012 at 10:36 am
Well, there's no fundamental barrier to creating an SSAS linked server to the same server as the RDBMS instance, you just have to give the linked server a different name,...
May 17, 2012 at 7:53 am
gemisigo (5/17/2012)
HowardW (5/17/2012)
There's absolutely no guarantee that the variable assignment will occur...
May 17, 2012 at 7:05 am
Viewing 15 posts - 361 through 375 (of 1,162 total)