Viewing 15 posts - 2,116 through 2,130 (of 14,953 total)
Probably the answer being looked for was "query the Excel file and compare to the table". Most people would, I think, make the same mistake Sean did and assume...
January 27, 2012 at 1:28 pm
By search for a string, do you mean search for a word within the XML, or search for a substring within the XML?
If words, then Full Text Indexing can work...
January 27, 2012 at 1:24 pm
Gianluca Sartori (1/27/2012)
Why not use a snapshot?
If you're not on Enterprise, it's not an option.
But a warehouse type solution would be, regardless of SQL edition.
Snapshot's definitely a great idea if...
January 27, 2012 at 12:48 pm
I know how it goes on not being able to post because of IP policies, security, et al. I was just hoping you could, because we could probably help.
Instead...
January 27, 2012 at 12:42 pm
Sean Lange (1/27/2012)
January 27, 2012 at 12:40 pm
If the spreadsheet had a checksum for each row, it would be easy to check that against the imported data by checksumming what comes in vs that.
Pretty much anything else...
January 27, 2012 at 12:38 pm
You're welcome.
January 27, 2012 at 11:57 am
I'd need a lot more than just the script to begin fixing that, as already mentioned.
Table and UDF definitions, definitely, and some insert statements to generate sample data, would start.
I...
January 27, 2012 at 11:56 am
Sorry about that. I have a Numbers table that includes integer values from 0-10,000. Comes in handy for dozens of uses.
You probably only need a limited scope for...
January 27, 2012 at 11:33 am
There are a couple of ways to do that. Best (if you're in SQL 2005 or later), is the Output clause:
insert into dbo.MyTable (column list)
output inserted.*
values (value list);
If you're...
January 27, 2012 at 11:24 am
Brandie Tarvin (1/27/2012)
GSquared (1/27/2012)
Brandie Tarvin (1/27/2012)
January 27, 2012 at 8:52 am
Foreign keys can only reference tables in the same database. They can't reference functions, views, et al.
You might be able to compensate for that with a trigger on the...
January 27, 2012 at 8:30 am
sturner (1/27/2012)
GSquared (1/27/2012)
Stop trying to help them.
Personally, I am growing more and more fond of Celko's approach with each passing day.
I understand the temptation, truly do.
Just don't succumb to it.
Or...
January 27, 2012 at 7:24 am
Brandie Tarvin (1/27/2012)
I'm...
January 27, 2012 at 6:32 am
GilaMonster (1/27/2012)
Dim CPDHourUpdate As SqlDataSource = New SqlDataSource() CPDHourUpdate.ConnectionString = ConfigurationManager.ConnectionStrings("Application").ToString()...
January 27, 2012 at 6:31 am
Viewing 15 posts - 2,116 through 2,130 (of 14,953 total)