Viewing 15 posts - 391 through 405 (of 1,554 total)
Another thing to remember, is that declared variables are unless initialized, null.
So, it's common when doing this concat trick to do;
declare @Body varchar(3000)
SET @Body...
December 6, 2006 at 8:44 am
Ah, yes, well.. that is true.
It is 'sort of' intended, though.. But it's a side effect.
When figuring out age from a dob date, there's one question that needs answering first.
If...
December 6, 2006 at 7:24 am
Dunno about Oracle, but here's a way that works in SQL Server...
-- some data with dob and genders
declare @ages table ( dob char(8) not null, gender char(1) not...
December 6, 2006 at 3:02 am
Does the application tell the server which 'path' it's using, or is coming from?
Or is there some other way you can identify that 'path'?
If there is, then that is the...
November 24, 2006 at 4:30 am
I figured as much
Unfortunately I don't have a device to try it out on
But it looks...
November 24, 2006 at 3:05 am
That's also 'normal' behaviour when loading data. You want to update existing rows, and insert the new ones.
No need for a cursor! Just a single update on all that qualifies,...
November 24, 2006 at 3:02 am
Nah, wouldn't have helped. Just found it when I posted about it, and you put me om track about linking it
/Kenneth
November 24, 2006 at 1:32 am
Nothing like a good ol' three-finger to solve any problem.
(though, access tokens also gets reset/renewed during a reboot)
Anyway, glad you solved it!
=;o)
/Kenneth
November 23, 2006 at 8:52 am
No probs Remi. Done and done. Linked it to here.
=;o)
/Kenneth
November 23, 2006 at 8:49 am
Question answered here:
http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=9&messageid=325083
/Kenneth
November 23, 2006 at 8:48 am
Please don't cross-post.
The same question is also posted in the Admin forum...
/Kenneth
November 23, 2006 at 8:18 am
Why don't you just try it out?
It seems to be free to use (good thing)
Or don't you have any thoughts on it?
/Kenneth
November 23, 2006 at 8:13 am
Looks to me like a permission issue anyway...
Can you verify that the account used when running as a job still has permission to access \\violet\dataimport\test.txt ?
/Kenneth
November 23, 2006 at 8:11 am
...which also is likely to be the most efficient method.
/Kenneth
November 23, 2006 at 7:57 am
Yes, there are some help for doing 'admin' starts, presumably used from a command prompt.
start the sqlserver service from a prompt and use some or a combo of the following...
November 22, 2006 at 7:07 am
Viewing 15 posts - 391 through 405 (of 1,554 total)