Viewing 15 posts - 166 through 180 (of 202 total)
u can use the data import wizzard and create a dtsx process to do this. setting it up can be a pain in the but. Thats comming from someone who...
March 9, 2012 at 12:45 pm
also, u may want to use the sp_msforeachdb functionality. Me personally, i stay away from it but that only cause old habit die hard.
March 9, 2012 at 9:25 am
We designed this at my old place. We called it a monitor. It would allow us to monitor all sorts of things from a single monitoring instance. It can get...
March 9, 2012 at 9:24 am
i see. i didnt read the bottom of his post. my bad......carry on
February 22, 2012 at 7:28 am
He didnt ask for set based solution but a cursor alternative. Who knows maybe your right. My solution was pre cte days. Old habits die hard.....
February 22, 2012 at 7:27 am
the above is a quick and dirty solution w/ pseudo code because you're not really providing the proper preface to give a detailed solution however it should suffice. Pretty straight...
February 22, 2012 at 6:56 am
declare @fm int, @movtype varchar(100)
select fm
, movtype
, 0 processed
into #temp
from whereEverThisIsStored
while exists ( select top 1 * from #temp where processed = 0)
begin
select top 1 @fm = fm
, @movtype =...
February 22, 2012 at 6:51 am
thanks guys. That worked.
February 21, 2012 at 1:27 pm
Excellent. I was unaware redgate offered this. I've used it for post migration analysis but never for erd. I had used visio previously and i have to say the redgate...
January 27, 2012 at 8:44 am
actually never mind. That worked "SSCrazy Eights". Thank you guys...again...
January 17, 2012 at 12:00 pm
thanks guys. I'll provide more infor in an hour or so. just got slammed.
January 17, 2012 at 10:31 am
sorry. it's coming in a different column
select replace('1 - Apr',' ','') dt, 2010 [year]
into #test
select dt,year --how do i convert this varchar to a datetime
from #test
January 17, 2012 at 10:13 am
lol. Brilliant.
January 4, 2012 at 2:33 pm
So how do i unhash it?
January 4, 2012 at 2:27 pm
To be honest i dont think he cares if it's hashed or encrypted. I think he just doesnt want it stored verbatum.
January 4, 2012 at 2:16 pm
Viewing 15 posts - 166 through 180 (of 202 total)