Viewing 15 posts - 496 through 510 (of 18,926 total)
anthony.green (12/8/2011)
update table1 set col1 = ','+col1+','
This does exactly what you requested. Just test on a test db and see for yourself.
December 8, 2011 at 10:21 am
logicinside22 (12/8/2011)
so how we can chane that report to run only 1-2...
December 8, 2011 at 10:02 am
Get less users working on that system.
Nothing you can do about that.
1 exception is if you have a massive report running 1000s of queries. Then you can change that...
December 8, 2011 at 9:50 am
Hugo Kornelis (12/8/2011)
Revenant (12/8/2011)
I am gettingMsg 102, Level 15, State 1, Line 1
Incorrect syntax near 'GO'.
on all 32,767 lines
That's because GO is not a T-SQL keyword, but a batch seperator,...
December 8, 2011 at 9:30 am
dale.schwabjr (12/8/2011)
The main performance issue I can see is when running...
December 8, 2011 at 9:18 am
dale.schwabjr (12/8/2011)
So, in General, are you saying you should or shouldn't put the transaction log on a separate physical disk?
In general you should. As long as the backups are...
December 8, 2011 at 9:09 am
That may help. But that's rather far down the list.
Counters are counters. They are only useful when compared to themselves when the system was running well.
Many (most) metric...
December 8, 2011 at 8:54 am
You shouldn't guess at this.
Where is your bottleneck? Fix that.
Where's your new bottleneck.
Fix that, rinse repeat.
How did you come up with the answer "my biggest problem is disks for...
December 8, 2011 at 8:43 am
Check out the QOTD section. You can filter on categories. You also have access to a summary of your strengths & also how you compare against the rest...
December 8, 2011 at 8:16 am
Daniel Bowlin (12/8/2011)
Cadavre (12/8/2011)
Daniel Bowlin (12/7/2011)
SELECT DATEDIFF(dd,GetDate(),'12/25/11') AS DaysTillChristmas
Just to over-complicate matters . . . 😀
SELECT CASE WHEN GETDATE() > DATEADD(d, 24, DATEADD(m, 11, DATEADD(yy, DATEDIFF(yy, 0, GETDATE()), 0)))
...
December 8, 2011 at 7:23 am
I get very similar results... almost exactly the same figures!
December 8, 2011 at 6:52 am
Dev (12/8/2011)
Ninja's_RGR'us (12/8/2011)
Dev (12/8/2011)
1260221107 (12/7/2011)
...Please don't SPAM here.
No point in begging, they just don't care about us, only themselves. Just report to Steve and mark...
December 8, 2011 at 6:11 am
Dev (12/8/2011)
1260221107 (12/7/2011)
...Please don't SPAM here.
No point in begging, they just don't care about us, only themselves. Just report to Steve and mark it as reported and...
December 8, 2011 at 6:03 am
Cadavre (12/8/2011)
SELECT STUFF((SELECT ',' + newRow
FROM (SELECT CONVERT(VARCHAR(4),newRow) AS newRow
...
December 8, 2011 at 5:50 am
Looks like someone played with the system tables to delete Fks or something evil like that.
If it's the case your backups will most likely be useless since the corruption will...
December 7, 2011 at 6:49 pm
Viewing 15 posts - 496 through 510 (of 18,926 total)