Viewing 15 posts - 4,111 through 4,125 (of 7,168 total)
Shaun-884394 (5/11/2012)
Thanks for the link, but i was looking for a non-clr solution.
Any particular reason why not? Let me guess...political reasons in your organization?
RegEx is one of the primary use-cases...
May 11, 2012 at 9:30 am
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...
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...
May 11, 2012 at 8:52 am
You're welcome 🙂 Post back if you get stuck going beyond what I gave you.
May 11, 2012 at 8:38 am
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...
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...
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.
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...
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...
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
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 *
...
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';
May 10, 2012 at 2:51 pm
manny_emm (5/10/2012)
ALTER PROCEDURE [dbo].[uspSendMail]
@FROM VARCHAR(256) = NULL,
@FROM_NAME VARCHAR(256) =...
May 10, 2012 at 2:48 pm
Viewing 15 posts - 4,111 through 4,125 (of 7,168 total)