Viewing 15 posts - 1,561 through 1,575 (of 14,953 total)
If you go to the My Account page, and then the Forum Control Panel (shortcut here: http://www.sqlservercentral.com/Forums/ControlPanel.aspx), you can view your Forum and Topic subscriptions. It's a little ways...
May 2, 2012 at 7:10 am
Can you copy and paste what SQL Server is suggesting into a post here? Would help.
May 2, 2012 at 6:32 am
create table #T (
Col1 int);
insert into #T (Col1)
values (1),(2),(3),(4),(5);
Like that? Or something else?
May 2, 2012 at 6:28 am
Not being a SAN engineer, I really don't know. But if it works, you're fine. Test it with a small dataset and a few files.
May 2, 2012 at 6:25 am
S_Kumar_S (5/1/2012)
May 2, 2012 at 6:23 am
The connections in the SSIS package will have that. Double-click them. The connections are usually in a window at the bottom of the screen in BIDS.
May 2, 2012 at 6:17 am
As far as understanding Scrum goes, you'll be better off researching it yourself. There's a lot to it. It's mainly about breaking things up into pieces that can...
May 2, 2012 at 6:17 am
Scrum meetings with business stakeholders and sprints is how I prioritize. Some projects take more than 1 sprint, moreso for a DBA than for a dev, but the basic...
May 1, 2012 at 9:41 am
The error message says column ACT_REC_ID is longer in the source than in the destination, and is hitting a truncation error.
May 1, 2012 at 8:44 am
I think you just need to install the 32-bit JET driver to do that.
May 1, 2012 at 8:43 am
Are you appending text files to each other? Or something else?
With text files, in C#, there's a File object with an AppendText method, if I'm not mistaken.
May 1, 2012 at 8:41 am
It's storing the character, but SSMS doesn't display it. What front-end will the actual application use, and does that front-end support a font that displays the symbol?
May 1, 2012 at 8:38 am
Try this, see what you get:
IF OBJECT_ID(N'tempdb..#T') IS NOT NULL
DROP TABLE #T ;
CREATE TABLE #T (X XML) ;
INSERT INTO #T
...
May 1, 2012 at 6:19 am
capn.hector (4/30/2012)
GSquared (4/30/2012)
Standard Edition can use 64GB of RAM in 2008 R2. Ref: http://download.microsoft.com/download/F/F/C/FFC6D450-A0A2-4916-80EA-B83F7BCDF250/SQLServer2008R2EditionsDatasheet_Aug10%5B1%5D.pdf
The OP was talking about Windows Server not SQL Server being the limiting factor the...
May 1, 2012 at 6:13 am
BarbW (4/30/2012)
May 1, 2012 at 6:10 am
Viewing 15 posts - 1,561 through 1,575 (of 14,953 total)