Viewing 15 posts - 7,216 through 7,230 (of 15,381 total)
Why not just create a .NET console app and schedule it with windows scheduler? This doesn't like the type of thing you need sql for at all.
August 8, 2013 at 7:36 am
Well I guess the joke is lost now as the topic has apparently been removed. :hehe:
August 8, 2013 at 7:29 am
Oracle765 (8/7/2013)
Hi again Seaneverything works fine its just the drop column part it does not seem to like
--Now we drop the original column
alter table dbo.newtable
drop column @column1
regards
Alan
This is because you...
August 8, 2013 at 7:24 am
Jeff Moden (8/7/2013)
Sean Lange (8/7/2013)
August 8, 2013 at 7:11 am
JoshDBGuy (8/7/2013)
August 7, 2013 at 2:58 pm
Glad you were able to figure it out.
You can use the IFCode shortcuts (over on the left) when posting to create code boxes. 😉
August 7, 2013 at 2:04 pm
JoshDBGuy (8/7/2013)
I have a question behind the logic of Try and Catch. I'm using Try Catch in a complex statement with a While Loop. If I put the Try...
August 7, 2013 at 1:43 pm
Oracle765 (8/7/2013)
The reason they change frequentl is that they are imported from a spreadsheet and the user selects the column name from a drop down box which matches the...
August 7, 2013 at 1:05 pm
GilaMonster (8/7/2013)
Sean Lange (8/7/2013)
GilaMonster (8/7/2013)
dbo is the schema name. Those two are identical, the .. is a shortcut for .dbo.
Gail doesn't this actually shortcut to the current user's default schema?...
August 7, 2013 at 12:39 pm
GilaMonster (8/7/2013)
dbo is the schema name. Those two are identical, the .. is a shortcut for .dbo.
Gail doesn't this actually shortcut to the current user's default schema? Of course that...
August 7, 2013 at 12:02 pm
Why not just raise an error when there is an error?
August 7, 2013 at 11:29 am
Why not just split the two conditions? No need for a cte here.
SELECT TOP (500) test.[TestId]
FROM tblTest as test
WHERE test.EndDateTime < @Date OR test.StartDateTime < @Date;
The next question is, which...
August 7, 2013 at 10:34 am
This is still the strangest requirement I have heard of in years...I can't come up with any rational reason why you would want to blindly modify all the data in...
August 7, 2013 at 10:22 am
Stefan Krzywicki (8/7/2013)
Sean Lange (8/7/2013)
Stefan Krzywicki (8/7/2013)
paul.knibbs (8/7/2013)
Stefan Krzywicki (8/7/2013)
Yep, owned by Oracle, but there's nothing I can do about that. This is going to be a small database for...
August 7, 2013 at 10:07 am
branovuk (8/7/2013)
I think I explained very detailed what I need in one of my posts.Please check and let me know if anything missing in my second explanation:
Simply reposting the...
August 7, 2013 at 8:55 am
Viewing 15 posts - 7,216 through 7,230 (of 15,381 total)