Viewing 15 posts - 1 through 15 (of 49 total)
Hi,
Once you said remove the values it hit me.
This is what I came up with:
// Move the data to the new field preserving original values
UPDATE dbo.StagingTable
SET ...
July 9, 2014 at 1:01 pm
Steps:
1. Taking the XLS data and using the bulkcopying object to a staging table (using C# instead of SSIS)
2. From within SQL Server 2008 I'm trying to parse the string...
July 9, 2014 at 9:26 am
Also these servers are VMs not physical servers.
May 31, 2013 at 7:20 am
We have 24GB of RAM where in the old servers were running 32GBs where the sys admin is stating the additional reads from no indexing caused massive delays.
Not sure what...
May 31, 2013 at 6:42 am
Not sure what you mean. Can you be more specific?
Regards,
May 31, 2013 at 6:12 am
I figured it out. Using a type of Extract functionality to retrieve nodes
Thanks,
February 4, 2012 at 6:12 am
Thanks for the reply:
The current system is using Info-Path (I haven't seen the code-base at all) and they are caputring user information and putting the data into an XML file...
February 3, 2012 at 11:45 am
Thanks Everyone!!
October 21, 2011 at 3:59 am
I Google first looking for
dynamically building tables in SQL
Create table based on SQL
SELECT Into
I couldn't remember the exact syntax and it was driving me nuts. It was one...
September 18, 2010 at 5:04 pm
Duly noted. I did my homework before posting and couldn't find it. There's alway one in the crowd.
September 17, 2010 at 4:35 am
Hi,
Try this function to loop through all databases
--This query will return a listing of all tables in all databases on a SQL instance:
DECLARE @command varchar(1000)
SELECT @command = 'USE ?...
August 27, 2010 at 4:50 pm
Thank You I'll have my tech lead look into this.
August 23, 2010 at 12:09 pm
I was trying to load additional parameters. I didn't have that set before and still encountered the same issue
April 20, 2009 at 5:54 pm
Unfortunately this is on a SQL Server 2000 environment. However I'll definitely give the cursor option a try.
Thank You very much
March 28, 2009 at 5:40 am
Viewing 15 posts - 1 through 15 (of 49 total)