Viewing 15 posts - 871 through 885 (of 1,415 total)
There was this one company that had hawaiian shirt days. Ultimately though the company headquarters burnt to the ground.
July 17, 2015 at 6:24 am
I know the post is a bit old but I just wanted to add that I've successfully done this and have not seen any adverse issues on both 2008 and...
July 15, 2015 at 7:51 am
Ok how about this modification of spaghettidba's code:
SELECT aBunchOfColumns
FROM User_Profile AS p
INNER JOIN aBunchOfTables
ON someCondition
WHERE EXISTS (
SELECT *
FROM...
July 14, 2015 at 10:37 am
You could use one update statement per "dataelement".
edit: as usual I could be completely wrong!
create table #task(TaskId bigint unique, Name varchar(2000))
insert into #task values(1, 'Text Text Text Text Text...
July 13, 2015 at 2:36 pm
I wonder if you could just modify Spaghettidba's criteria to check for the null @tvp maybe?
SELECT aBunchOfColumns
FROM User_Profile AS p
INNER JOIN aBunchOfTables
ON someCondition
WHERE EXISTS (
...
July 10, 2015 at 12:58 pm
narengc (7/9/2015)
July 10, 2015 at 8:46 am
Michael L John (7/10/2015)
If you keep going on this thread, as well as others, the "answer" is to drop the trigger, drop the publication and...
July 10, 2015 at 8:27 am
Michael L John (7/9/2015)
While I know nothing about this, I was just curious if your tables themselves had that ansi padding set? I know I've seen some table definitions that...
July 10, 2015 at 6:54 am
Perry Whittle (7/10/2015)
patrickmcginnis59 10839 (7/9/2015)
Perry Whittle (7/9/2015)
plamannkathy (7/9/2015)
$SourceLocation = "e:\backup\xxx`$xxx\master\Full"$DestinationLocation = "\\sharebackup\xxx`$xxx\master\Full"
Thanks 500!!
This worked. This problem now solved.
Thanks everyone
did you even bother to read my last post
I think you had...
July 10, 2015 at 6:27 am
Michael L John (7/9/2015)
When the snapshot is generated, any table that consists of all numeric columns creates a script with...
July 9, 2015 at 3:21 pm
Perry Whittle (7/9/2015)
plamannkathy (7/9/2015)
$SourceLocation = "e:\backup\xxx`$xxx\master\Full"$DestinationLocation = "\\sharebackup\xxx`$xxx\master\Full"
Thanks 500!!
This worked. This problem now solved.
Thanks everyone
did you even bother to read my last post
I think you had the right solution, if...
July 9, 2015 at 2:55 pm
patrickmcginnis59 10839 (7/9/2015)
$SourceLocation = "e:\backup|xxx'$'xxx\master\Full"
$DestinationLocation = "\\sharebackup\xxx'$'xxx\master\Full"
Not sure if the single quotes inside the double quotes will still escape your $ for you, but you could try with first...
July 9, 2015 at 11:43 am
try quotes?
$SourceLocation = "e:\backup|xxx'$'xxx\master\Full"
$DestinationLocation = "\\sharebackup\xxx'$'xxx\master\Full"
Not sure if the single quotes inside the double quotes will still escape your $ for you, but you could try with first and then...
July 9, 2015 at 11:29 am
Perry Whittle (7/9/2015)
patrickmcginnis59 10839 (7/9/2015)
July 9, 2015 at 8:33 am
Perry Whittle (7/9/2015)
patrickmcginnis59 10839 (7/8/2015)whats the syntax in PoSh to set interpacket gaps?
Would it really be that much of an issue?
That's true, I don't have to have that functionality in...
July 9, 2015 at 4:16 am
Viewing 15 posts - 871 through 885 (of 1,415 total)