Viewing 15 posts - 13,381 through 13,395 (of 15,381 total)
Again, the easiest way is to parameterize your queries. You can either parameterize your pass through queries or create a stored proc.
Store proc example:
create procedure Table1_Insert
(
...
December 7, 2011 at 8:26 am
Why would you want to do that to your data? How you are going to handle this when there are 3 with the same ID? What about when there are...
December 7, 2011 at 8:10 am
Erwin Dockx (12/7/2011)
INSERT dbo.Table1 (Html)
SELECT '<table cellpadding="0" cellspacing="0" border="0"...
December 7, 2011 at 8:01 am
By far the easiest and best way to deal with this is to use a stored proc and make this html string a parameter. Otherwise you need to do a...
December 7, 2011 at 7:41 am
Can you just use a parameterized query?
December 6, 2011 at 10:31 am
Since you are new around here you probably have not yet had time to read best practices on posting questions. The idea is to make it easy for the unpaid...
December 6, 2011 at 10:06 am
Then you should normalize this data and store it in the format as you have it displayed. A column should contain a single piece of information and not a whole...
December 6, 2011 at 9:22 am
yeah just connect like normal. The 2008 SSMS can connect to 2005 with no problem.
December 6, 2011 at 7:45 am
Lowell (12/5/2011)
December 5, 2011 at 1:31 pm
ted_oconnor (12/5/2011)
As a side note, it that a Sporting KC...
December 5, 2011 at 1:26 pm
So the series of updates I posted should work. Just put code similar to that in your new proc. Update the holding table until you have it all cleaned up,...
December 5, 2011 at 1:01 pm
Just building on your example, and assuming you don't have to do this directly on import.
create table #Vals(SomeValue nvarchar(15))
insert #Vals
select 'ØØØ1Ø99I' union all
select 'ØØØ72976(' union all
select 'ØØØØ1Ø3J' union all
select 'ØØØ82986)'
go
select...
December 5, 2011 at 12:45 pm
I think the issue you are running into is one of the main reasons that changing key values is a horrible idea. I understand it is something outside of your...
December 5, 2011 at 10:45 am
aarionsql (12/5/2011)
December 5, 2011 at 9:18 am
I agree to you if transactions distribution is uniform. It really makes sense to store them in UTC. I would go for it & there is no point-of-view difference.
Now...
December 5, 2011 at 9:11 am
Viewing 15 posts - 13,381 through 13,395 (of 15,381 total)