Viewing 15 posts - 46 through 60 (of 244 total)
would need the actual talbe def and some sample date. Nonetheesee there are several ways. If you're not concerned w using transactions then u can use and update statement join...
November 18, 2010 at 2:36 pm
-- you feel the need to use a second nickname to post something you should know that you shouldn't hit the "post" button.
It's common to use a "BUMP" post if...
November 18, 2010 at 2:31 pm
very cool. I will be doing the same when i have downtime. i love writting c# executables.
November 18, 2010 at 2:19 pm
yep. I've resoved the issue several different ways. This isnt a new issue. Is there a way to submit these sorts of simple issue to possably be address in...
November 18, 2010 at 1:49 pm
My deepest apologies Jeff. I told someone he was as useful as a paraplegic mime in a past and that didn’t go over so well. So I was under the...
November 18, 2010 at 1:46 pm
what about going the other way?
I'm familiar w/ sql server and not so much in mysql. Therefore if or when i have to work in mysql which isnt very ofter...
August 17, 2010 at 9:24 am
sorry, didnt realize u had question.,
I dont recall what it was for. i think i was generating a file and the end user consuming this file wanted the categories in...
July 28, 2010 at 12:07 pm
nevermind i got it. no .. between db and table, no brakets and case sensative
'select * from localxml.claimed_business_record'
July 22, 2010 at 2:29 pm
i changed it in the registry and rebooted my box. It was changed back. How to i make it change perminently?
July 20, 2010 at 8:42 am
the issue is if there is at least one record in the select inside the where that you are "not in"ing to then the whole result set returns nothing. So...
July 1, 2010 at 1:28 pm
Figures.
I'll get the data from a different sys table.
Thanks for your response.....
June 16, 2010 at 3:00 pm
got it...below is the solution
declare @sql nvarchar(1000)
declare @testInt int
declare @ParmDefinition nvarchar(100)
--set @testInt =0
set @sql = 'select @testInt =1'
set @ParmDefinition = '@testInt int out'
exec sp_executesql
June 10, 2010 at 8:48 am
yea, that doesn't work. I've got the solution though if you want ot see it.
declare @sql nvarchar(1000)
declare @testInt int
declare @ParmDefinition nvarchar(100)
--set @testInt =0
set @sql =...
June 10, 2010 at 8:48 am
this is a much better and simpler example...
declare @sql varchar(1000)
declare @testInt int
set @testInt =0
set @sql = 'select 1'
exec (@sql)
--how can i set @testInt = to...
June 10, 2010 at 8:16 am
Eugene Elutin is right, you should be able to deduce what needs to happen from what he supplied. However, everyone has to start from somewhere and after this issue is...
June 2, 2010 at 11:27 am
Viewing 15 posts - 46 through 60 (of 244 total)