Viewing 15 posts - 4,111 through 4,125 (of 7,164 total)
How many rows in the source table?
Since you need to track deletes you may need to copy all contents of the table from the source into a staging table in...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
May 11, 2012 at 9:24 am
Well, I will say it is not as obvious as Database.LogFiles hanging off the database object straight-away but when you think about it in terms of how SQL Server organizes...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
May 11, 2012 at 8:52 am
You're welcome 🙂 Post back if you get stuck going beyond what I gave you.
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
May 11, 2012 at 8:38 am
Relevant?
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
May 10, 2012 at 9:20 pm
Lynn Pettis (5/10/2012)
Jeff Moden (5/10/2012)
So much time wasted.
Maybe, but it is my time to waste. I'm not going to apologize for hoping against hope for the best. I...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
May 10, 2012 at 7:06 pm
OPENROWSET does not have HTTP resolution capabilities. OPENROWSET requires the file be available at some disk location, either local drive or UNC path, so you'll need to download the XML...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
May 10, 2012 at 4:21 pm
Accounting software with that many triggers I would guess many of them are for generating a trail in audit and history tables.
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
May 10, 2012 at 4:10 pm
PowerShell is an option, and one I would go for if this will be a recurring need.
Here is an option using some T-SQL and the SSMS GUI scripting features...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
May 10, 2012 at 4:06 pm
sudha.kotapati (5/8/2012)
I have 200 millions of records in one table .I want to load it into set of tables based on the year.
So while loading the...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
May 10, 2012 at 3:24 pm
Please do not cross-post.
Direct all replies here:
http://www.sqlservercentral.com/Forums/Topic1296885-1549-1.aspx
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
May 10, 2012 at 3:20 pm
This sample (adapted from here)worked for me:
USE tempdb
GO
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
SET ANSI_PADDING ON
GO
IF EXISTS ( SELECT *
...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
May 10, 2012 at 3:17 pm
There is no need to turn on Advanced options:
SELECT *
FROM sys.configurations
WHERE name = 'Database Mail XPs';
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
May 10, 2012 at 2:51 pm
manny_emm (5/10/2012)
ALTER PROCEDURE [dbo].[uspSendMail]
@FROM VARCHAR(256) = NULL,
@FROM_NAME VARCHAR(256) =...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
May 10, 2012 at 2:48 pm
Lynn Pettis (5/10/2012)
I'd say that you could still store 8 bits in a byte.
Surly Yoda today 😛
It is unclear to me from BOL but I found this link:
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
May 10, 2012 at 1:53 pm
That's a good paper. All the reading I have done and my experience with mirroring tells me it is not very good at scaling up to those levels. It is...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
May 10, 2012 at 1:39 pm
Viewing 15 posts - 4,111 through 4,125 (of 7,164 total)