Viewing 15 posts - 121 through 135 (of 1,192 total)
Sean Lange (10/30/2015)
Michael L John (10/30/2015)
Brandie Tarvin (10/30/2015)
Nevermind. One of our developers...
October 30, 2015 at 8:37 am
* How do you structure your reporting services projects? eg, do you create a new project for each... "group" of reports? If so, how do you group reports?
Multiple projects, usually...
October 27, 2015 at 9:42 am
sgmunson (9/24/2015)
September 24, 2015 at 11:16 am
Just add WHERE BD.OD_RIT <> BD.D_RID then. Surely you could have worked that out? 🙂
September 18, 2015 at 10:25 am
I'd probably be using something like the code in your first post, with PIVOT or the cross-tab method.
Jeff has a couple of articles on it here: http://www.sqlservercentral.com/articles/T-SQL/63681/
With that many decline...
September 18, 2015 at 10:18 am
Increase your timeout? It's a property of the connection so it needs to be done in C#.
Although I can't see why that code should take > 30 seconds to run.
September 18, 2015 at 9:11 am
Perry Whittle (9/18/2015)
when you shrink you'll likely undo all the rebuild or reorg work anyway as pages may get moved during the shrink operation, so your efforts in the first...
September 18, 2015 at 8:57 am
erichansen1836 (9/17/2015)
So now we're saying 32 bit processors can't seek past 4 gigs? Tell me more!
edit: Seriously, I don't write big files, so I haven't had to deal with this,...
September 17, 2015 at 12:06 pm
Don't envy you this task, sounds like changing a database collation but less fun!
I'd be fighting hard to change columns to built in datatypes rather than new/modified user defined types.
For...
September 16, 2015 at 8:30 am
Lynn Pettis (9/15/2015)
vedau (9/15/2015)
1. Share PROD backup folder so that you can access it...
September 16, 2015 at 7:56 am
You can, but I doubt it'd be worth it. Just place it as you would a normal user db, with data & log files on different drives.
It's not used nearly...
September 16, 2015 at 6:43 am
GilaMonster (9/15/2015)
Gazareth (9/14/2015)
September 15, 2015 at 4:08 am
SSIS, SSRS, maybe Powershell?
You can use the Export wizard to create an SSIS package, you'd need to modify the package to add the email & scheduling afterwards.
SSRS can generate the...
September 14, 2015 at 10:49 pm
In SSMS:
ALTER DATABASE [dbname] MODIFY FILE (Name = Logfilename, FILENAME = N'F:\....\')
GO
ALTER DATABASE [dbname] SET OFFLINE
GO
*Outside SSMS* Move/copy files to new location on F:
*In SSMS, after copy's complete* ALTER DATABASE...
September 14, 2015 at 10:33 pm
Have you looked at the execution plans for both varieties at all?
Wild speculation, but could be that the use of the date index adds key lookups/bitmap probes which might be...
September 8, 2015 at 8:29 am
Viewing 15 posts - 121 through 135 (of 1,192 total)